diff --git a/AUTHORS b/AUTHORS
index cf48193b5faba52c099ce5b814cb1d58913dd1d0..62cba0a12efcf1a796f5b7b8ddf22884cca87dae 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -175,3 +175,5 @@ documentation and additional help.
 * Felix Weissbeck <contact-fusiondirectory@w7k.de>
   Method to add a change password dialog on sasl+kerberos
   
+* Tobias Göbel
+  Fixes for PHP7 compatibility
diff --git a/Changelog b/Changelog
index 824d8fcf9745e28b00b306b8c2238d1ca791872b..c9db9fe3e1afff82e1c65eacae2181e065408dc6 100644
--- a/Changelog
+++ b/Changelog
@@ -1,6 +1,24 @@
 FusionDirectory changelog
 =========================
 
+* FusionDirectory 1.0.9.3
+
+Bugs #4444: Debug log prevent connection in some cases
+Bugs #4452: Adding a user to a group using "Groups and roles" tab creates some PHP errors
+Bugs #4453: Adding a user to a group using "Groups and roles" with trustMode fails
+Bugs #4456: Can't find a way to specify a '/' in distribution or media name in the repository plugin
+Bugs #4457: FusionDirectory don't find the dns server if he is in a department
+Bugs #4459: Desactivate other authentification method from configuration file
+Bugs #4463: There are still traces of the rsyslog plugin in the schema and config class
+Bugs #4464: There are still traces of the rsyslog plugin in the schema and config class
+Bugs #4465: remove from the service-fd.schema objectClass no longer used
+Bugs #4466: Pull request 11 from github
+Bugs #4479: In primary group in unix tab there is a «None» option
+Bugs #4481: «Enable primary group filter» option is obsolete
+Bugs #4485: 'fusiondirectory-insert-schema -m' should check if the specificed file exists
+Wishlist #4385: Locked users can connect using SSH keys
+Wishlist #4473: Locked users can connect using SSH keys
+
 * FusionDirectory 1.0.9.2
 
 [Fix] Bugs #3880: mailbox deletion through sieve and cyrus does not work
diff --git a/contrib/bin/fusiondirectory-insert-schema b/contrib/bin/fusiondirectory-insert-schema
index ac5bd0dbd5d9e8ea4c0d01e10f192a3f234d37e5..6e5bff18a97067f9e6a030444e252e102ae1c2e6 100644
--- a/contrib/bin/fusiondirectory-insert-schema
+++ b/contrib/bin/fusiondirectory-insert-schema
@@ -84,6 +84,7 @@ foreach my $arg ( @ARGV ) {
         push @schemas, $1;
         push @gen_files, $1;
       } else {
+        push @gen_files, $1;
         die_with_error("Something went wrong while trying to convert $arg to ldif\n");
       }
     } else {
diff --git a/contrib/bin/fusiondirectory-setup b/contrib/bin/fusiondirectory-setup
index b80702e470e88044d6d9c2df0a72c19d8c8ae5e1..b38b004eed14b7818ce5938a05f3b830909f3b60 100644
--- a/contrib/bin/fusiondirectory-setup
+++ b/contrib/bin/fusiondirectory-setup
@@ -1531,6 +1531,37 @@ sub read_ldap_config {
       $aclrolerdn = ($mesg->entries)[0]->get_value('fdAclRoleRDN');
     }
   }
+
+  return ($mesg->entries)[0];
+}
+
+sub show_ldap_config {
+  my $config_node = read_ldap_config();
+  $config_node->dump();
+}
+
+sub set_config_var {
+  my ($var, $value) = @_;
+  if (!($var =~ m/^fd/)) {
+    $var = "fd$var";
+  }
+
+  print "Setting configuration var $var to $value\n";
+
+  # initiate the LDAP connexion
+  my %hash_ldap_param = get_ldap_connexion();
+
+  # LDAP's connection's parameters
+  my $base = $hash_ldap_param{base};
+  my $ldap = $hash_ldap_param{ldap};
+
+  my $result = $ldap->modify (
+    "$configrdn,$base",
+    replace => {
+      $var  => $value
+    }
+  );
+  $result->code && warn "! failed to set value for '".$var."' - ".$result->error_name.": ".$result->error_text;
 }
 
 sub show_version {
@@ -1597,21 +1628,24 @@ die ("! You have to run this script as root\n") if ($<!=0);
   $commands{"--list-deprecated"}      = ["List deprecated attributes and objectclasses",  \&list_deprecated];
   $commands{"--check-deprecated"}     = ["List LDAP entries using deprecated attributes or objectclasses",  \&check_deprecated];
   $commands{"--ldif-deprecated"}      = ["# Print an LDIF removing deprecated attributes",\&ldif_deprecated];
+  $commands{"--show-config"}          = ["Show an LDAP dump of the FusionDirectory configuration",\&show_ldap_config];
+  $commands{"--set-config-VAR=value"} = ["Set the value in LDAP of a configuration field",\&set_config_var];
 
   my $usage = 0;
 
   set_vars();
 
   foreach my $arg ( @ARGV ) {
-    if (( lc($arg) =~ m/^--set-(.*)=(.*)/ ) && (grep {$_ eq lc($1)} @vars_keys)) {
+    if (( lc($arg) =~ m/^--set-(.*)=(.*)$/ ) && (grep {$_ eq lc($1)} @vars_keys)) {
       $vars{lc($1)} = $2;
       print "Setting $1 to $2\n";
       set_vars();
+    } elsif ( $arg =~ m/^--set-config-(.*)=(.*)$/ ) {
+      set_config_var($1, $2);
     } elsif ( defined $commands { lc ( $arg ) } ) {
       my @command = @{ $commands{ $arg } };
       print( $command[0]."\n" );
       $command[1]();
-
     } elsif ( ( lc($arg) eq "--help" ) || ( lc($arg) eq "-h" ) ) {
       print ( "\nCommands:\n" );
       while ( my ( $key,$value ) = each %commands ) {
@@ -1641,7 +1675,7 @@ __END__
 
 =head1 NAME
 
-fusiondirectory-setup - FusionDirectory setup script
+fusiondirectory-setup - FusionDirectory configuration management tool
 
 =head1 DESCRIPTION
 
@@ -1717,6 +1751,15 @@ This option will list the dn of LDAP entries using deprecated attributes or obje
 
 This option will print an LDIF to allow you to remove deprecated attributes from you ldap server. Be carefull and check before applying.
 
+=item --show-config
+
+This option will print a dump of the FusionDirectory configuration LDAP node.
+
+=item --set-config-VAR=value
+
+This option sets the value of a configuration field in the LDAP. The value needs to be in the correct LDAP format.
+You cannot set multivalued field with this. The var name can be provided with or without the fd prefix.
+
 =item --yes
 
 This flag will answer "yes" to every yes/no question asked by the script
diff --git a/contrib/docs/UPGRADE b/contrib/docs/UPGRADE
index 6abc6029b0ee81fd888f117fda80f20e87bb3bd8..85ab9fe6ee8e19e2425f668c914a325a2f8d84e7 100644
--- a/contrib/docs/UPGRADE
+++ b/contrib/docs/UPGRADE
@@ -958,6 +958,147 @@ step at the exception of the gosaAccount class that is migrated with **fusiondir
 
 Please read it carefully before applying :!::!:
 
+
+Migrate FusionDirectory from 1.0.9.2 to 1.0.9.3
+===============================================
+
+Ubuntu 12.0.4 TLS users
+=======================
+ 
+Since 1.0.9.2 FusionDirectory need the php-cas library for CAS server support. This library can normally found in universe in the Ubuntu repositories.
+
+In case you did not find it, grab the deb from here and install it
+
+http://packages.ubuntu.com/trusty/all/php-cas/download
+
+and select your preferred mirror
+
+Upgrade FusionDirectory first
+=============================
+
+- Upgrade FusionDirectory core package before other ones to avoid dependencies errors:
+
+apt-get install fusiondirectory
+
+- Upgrade FusionDirectory schema package too.
+
+apt-get install fusiondirectory-schema
+
+Upgrade of LDAP directory
+=========================
+
+- Upgrade the core configuration schema
+
+fusiondirectory-insert-schema -m /etc/ldap/schema/fusiondirectory/core-fd-conf.schema
+
+- if your are using the system plugin you have to update his schema
+
+fusiondirectory-insert-schema -m /etc/ldap/schema/fusiondirectory/service-fd.schema
+
+- if your are using the repository plugin you have to update his schema
+
+fusiondirectory-insert-schema -m /etc/ldap/schema/fusiondirectory/repository.schema
+
+Remove old schema from /etc/ldap/schema/fusiondirectory
+=======================================================
+
+The old schema are not automatically removed from /etc/ldap/schema/fusiondirectory.
+You can safely remove **recovery-fd.schema** and **asterisk-fd.conf** if they still exist
+
+Check for deprecated attributes and objectClasses in your LDAP
+==============================================================
+
+**fusiondirectory-setup --list-deprecated** show deprecated attributes and objectClasses for FusionDirectory
+
+<code>
+fusiondirectory-setup --list-deprecated
+List deprecated attributes and objectclasses
+Deprecated attributes:
+ gotoModules                    (GOto - Gonicus Terminal Concept, value kernel modules.)        - 1.3.6.1.4.1.10098.1.1.1.32
+ fdPasswordHook                 (FusionDirectory - Password hook (external command))            - 1.3.6.1.4.1.38414.8.13.4
+ fdSnapshotURI                  (FusionDirectory - Snaphost URI)                                - 1.3.6.1.4.1.38414.8.17.3
+ gotoXVsync                     (GOto - Gonicus Terminal Concept, value xVsync.)                - 1.3.6.1.4.1.10098.1.1.1.19
+ ghSoundAdapter                 (Hardware definitions, value soundAdapter)                      - 1.3.6.1.4.1.10098.1.1.2.7
+ gotoXMouseport                 (GOto - Gonicus Terminal Concept, value xMouseport.)            - 1.3.6.1.4.1.10098.1.1.1.22
+ gotoXMonitor                   (GOto - Gonicus Terminal Concept, value xMonitor.)              - 1.3.6.1.4.1.10098.1.1.1.17
+ gotoAdaptPath                  (GOto - Gonicus Terminal Concept, value adaptpath.)             - 1.3.6.1.4.1.10098.1.1.1.33
+ gotoScannerClients             (GOto - Gonicus Terminal Concept, value scannerClients.)        - 1.3.6.1.4.1.10098.1.1.1.11
+ gotoHardwareChecksum           (GOto - quick way to see if something has changed)              - 1.3.6.1.4.1.10098.1.1.2.12
+ gotoRootPasswd                 (GOto - Gonicus Terminal Concept, value rootPasswd.)            - 1.3.6.1.4.1.10098.1.1.1.14
+ gotoXKbLayout                  (GOto - Gonicus Terminal Concept, value xKblayout.)             - 1.3.6.1.4.1.10098.1.1.1.26
+ gotoProfileServer              (GOto - specifies the profile server)                           - 1.3.6.1.4.1.10098.1.1.11.8
+ fdAccountRDN                   (FusionDirectory - use a placeholder pattern for generating account RDNs)       - 1.3.6.1.4.1.38414.8.12.2
+ gotoScannerEnable              (GOto - Gonicus Terminal Concept, value scannerEnable.)         - 1.3.6.1.4.1.10098.1.1.1.10
+ ghGfxAdapter                   (Hardware definitions, value Grafikkarte)                       - 1.3.6.1.4.1.10098.1.1.2.9
+ gotoFontPath                   (GOto - Gonicus Terminal Concept, value fontPath.)              - 1.3.6.1.4.1.10098.1.1.1.5
+ ghIdeDev                       (Hardware definitions, value ideDev)                            - 1.3.6.1.4.1.10098.1.1.2.4
+ gotoLpdEnable                  (GOto - Gonicus Terminal Concept, value lpdEnable.)             - 1.3.6.1.4.1.10098.1.1.1.9
+ gotoXKbVariant                 (GOto - Gonicus Terminal Concept, value xKbvariant.)            - 1.3.6.1.4.1.10098.1.1.1.27
+ fdRfc2307bis                   (FusionDirectory - rfc2307bis)                                  - 1.3.6.1.4.1.38414.8.10.1
+ gotoAutoFs                     (GOto - Gonicus Terminal Concept, value autofs.)                - 1.3.6.1.4.1.10098.1.1.1.31
+ gotoSndModule                  (GOto - Gonicus Terminal Concept, value sound Modules.)         - 1.3.6.1.4.1.10098.1.1.1.29
+ gotoCdromEnable                (GOto - Gonicus Terminal Concept, value cdromEnable.)           - 1.3.6.1.4.1.10098.1.1.1.8
+ gotoScannerModel               (GOto - Gonicus Terminal Concept, value scannerModel.)          - 1.3.6.1.4.1.10098.1.1.1.40
+ gosaLoginRestriction           (GOsa - Multivalue attribute to carry a number of allowed ips/subnets)  - 1.3.6.1.4.1.10098.1.1.12.46
+ gotoXColordepth                (GOto - Gonicus Terminal Concept, value xColordepth.)           - 1.3.6.1.4.1.10098.1.1.1.21
+ academicTitle                  (Field to represent the academic title)                         - 1.3.6.1.4.1.10098.1.1.6.2
+ fdSnapshotAdminDn              (FusionDirectory - Snaphost admin dn)                           - 1.3.6.1.4.1.38414.8.17.4
+ gotoFilesystem                 (GOto - Gonicus Terminal Concept, value filesystem.)            - 1.3.6.1.4.1.10098.1.1.1.6
+ ghInventoryNumber              (Unique number for inclusion in an inventory)                   - 1.3.6.1.4.1.10098.1.1.2.10
+ gosaSubtreeACL                 (GOsa - ACL entry)                                              - 1.3.6.1.4.1.10098.1.1.12.1
+ fdIdGenerator                  (FusionDirectory - An automatic way to generate new user ids)   - 1.3.6.1.4.1.38414.8.12.4
+ ghUsbSupport                   (Hardware definitions, value usbSupport)                        - 1.3.6.1.4.1.10098.1.1.2.3
+ gotoSysStatus                  (Keeps current system status - info shown in GOsa)              - 1.3.6.1.4.1.10098.1.1.2.11
+ fdCopyPaste                    (FusionDirectory - (de)Activate copy/paste)                     - 1.3.6.1.4.1.38414.8.14.5
+ gotoXDriver                    (GOto - Gonicus Terminal Concept, value xDriver.)               - 1.3.6.1.4.1.10098.1.1.1.28
+ gotoXKbModel                   (GOto - Gonicus Terminal Concept, value xKbmodel.)              - 1.3.6.1.4.1.10098.1.1.1.25
+ fdPersonalTitleInDN            (FusionDirectory - Personal title in dn)                        - 1.3.6.1.4.1.38414.8.12.5
+ gotoLpdServer                  (GOto - Gonicus Terminal Concept, value lpdServer.)             - 1.3.6.1.4.1.10098.1.1.1.4
+ gotoXHsync                     (GOto - Gonicus Terminal Concept, value xHsync.)                - 1.3.6.1.4.1.10098.1.1.1.18
+ gotoProfileFlags               (GOto - Flags for Profile handling - C is for caching)          - 1.3.6.1.4.1.10098.1.1.11.7
+ ghCpuType                      (Hardware definitions, value cpuType)                           - 1.3.6.1.4.1.10098.1.1.2.1
+ gotoXResolution                (GOto - Gonicus Terminal Concept, value xResolution.)           - 1.3.6.1.4.1.10098.1.1.1.20
+ gotoShare                      (GOto - specifies a share)                                      - 1.3.6.1.4.1.10098.1.1.11.9
+ gotoScannerBackend             (GOto - Gonicus Terminal Concept, value scannerBackend.)        - 1.3.6.1.4.1.10098.1.1.1.39
+ fdSnapshotAdminPassword        (FusionDirectory - Snaphost admin password)                     - 1.3.6.1.4.1.38414.8.17.5
+ fdVoicemailContexts            (FusionDirectory - available voicemail contexts)                - 1.3.6.1.4.1.38414.19.11.2
+ gosaDefaultLanguage            (GOsa - Defines the default language for a user)                - 1.3.6.1.4.1.10098.1.1.12.14
+ ghMemSize                      (Hardware definitions, value memSize)                           - 1.3.6.1.4.1.10098.1.1.2.2
+ gotoProfileQuota               (GOto - save quota for home)                                    - 1.3.6.1.4.1.10098.1.1.11.15
+ fdSipContexts                  (FusionDirectory - available sip contexts)                      - 1.3.6.1.4.1.38414.19.11.1
+ fdPhoneConferenceRDN           (FusionDirectory - Phone conference RDN)                        - 1.3.6.1.4.1.38414.19.10.3
+ ghScsiDev                      (Hardware definitions, value scsiDev)                           - 1.3.6.1.4.1.10098.1.1.2.5
+ fdPhoneMacroRDN                (FusionDirectory - Phone macro RDN)                             - 1.3.6.1.4.1.38414.19.10.2
+ ghNetNic                       (Hardware definitions, value Network Device)                    - 1.3.6.1.4.1.10098.1.1.2.8
+ gotoFloppyEnable               (GOto - Gonicus Terminal Concept, value floppyEnable.)          - 1.3.6.1.4.1.10098.1.1.1.7
+ gotoXMouseButtons              (GOto - Gonicus Terminal Concept, value xMouseButtons.)         - 1.3.6.1.4.1.10098.1.1.1.23
+ gotoXMouseType                 (Hardware definitions, value Type of mouse)                     - 1.3.6.1.4.1.10098.1.1.1.34
+Deprecated objectClasses:
+ goCupsServer                   (CUPS server description)                                       - 1.3.6.1.4.1.10098.1.2.1.23
+ gosaCacheEntry                 (GOsa - Class for GOsa caching)                                 - 1.3.6.1.4.1.10098.1.2.1.19.3
+ gosaUserTemplate               (GOsa - Class for GOsa User Templates)                          - 1.3.6.1.4.1.10098.1.2.1.19.11
+ gosaAccount                    (GOsa - Class for GOsa Accounts)                                - 1.3.6.1.4.1.10098.1.2.1.19.6
+ gosaObject                     (GOsa - Class for GOsa settings)                                - 1.3.6.1.4.1.10098.1.2.1.19.1
+</code>
+
+
+fusiondirectory-setup --check-deprecated will output a list of dn using old attributes and objectClasses of they are present in your ldap server
+
+fusiondirectory-setup --check-deprecated
+List LDAP entries using deprecated attributes or objectclasses
+There are no entries in the LDAP using obsolete attributes
+There are no entries in the LDAP using obsolete classes
+
+fusiondirectory-setup --migrate-users can help you migrate you user to the new core classes that are used by FusionDirectory. 
+If they are attributes moved over to the personal plugin, it will automatically migrate them and you juste need to install the personal plugin
+
+fusiondirectory-setup --ldif-deprecated will output an ldif file on the console that you can use with ldapmodify to clean you ldap server from old attributes.
+
+If they are old objectClasses it will warn you and you will have to remove it by hand, they have been specified at the fusiondirectory-setup --check-deprecated 
+step at the exception of the gosaAccount class that is migrated with **fusiondirectory-setup --migrate-users** like mentioned above. 
+
+Please read it carefully before applying !!
+
 ---
 * Further information
 
diff --git a/contrib/man/fusiondirectory-insert-schema.1 b/contrib/man/fusiondirectory-insert-schema.1
index 08390dbce528a61f83ad6902aba83d03358dd296..cf9516a37fe38eb86d69b25c76083f94cf5deb0e 100644
--- a/contrib/man/fusiondirectory-insert-schema.1
+++ b/contrib/man/fusiondirectory-insert-schema.1
@@ -133,7 +133,7 @@
 .\" ========================================================================
 .\"
 .IX Title "FUSIONDIRECTORY-INSERT-SCHEMA 1"
-.TH FUSIONDIRECTORY-INSERT-SCHEMA 1 "2016-01-05" "FusionDirectory 1.0.9.2" "FusionDirectory Documentation"
+.TH FUSIONDIRECTORY-INSERT-SCHEMA 1 "2016-01-29" "FusionDirectory 1.0.9.3" "FusionDirectory Documentation"
 .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 .\" way too many mistakes in technical documents.
 .if n .ad l
diff --git a/contrib/man/fusiondirectory-setup.1 b/contrib/man/fusiondirectory-setup.1
index 294bff4805064db2499566f89bb045b6b0411805..3418714c3b09fb0833fcecd847443d53a8afb4a8 100644
--- a/contrib/man/fusiondirectory-setup.1
+++ b/contrib/man/fusiondirectory-setup.1
@@ -133,13 +133,13 @@
 .\" ========================================================================
 .\"
 .IX Title "FUSIONDIRECTORY-SETUP 1"
-.TH FUSIONDIRECTORY-SETUP 1 "2016-01-05" "FusionDirectory 1.0.9.2" "FusionDirectory Documentation"
+.TH FUSIONDIRECTORY-SETUP 1 "2016-01-29" "FusionDirectory 1.0.9.3" "FusionDirectory Documentation"
 .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 .\" way too many mistakes in technical documents.
 .if n .ad l
 .nh
 .SH "NAME"
-fusiondirectory\-setup \- FusionDirectory setup script
+fusiondirectory\-setup \- FusionDirectory configuration management tool
 .SH "DESCRIPTION"
 .IX Header "DESCRIPTION"
 This script is designed to perform multiple checks on your FusionDirectory/LDAP architecture, and fix usual misconfiguration.
@@ -195,6 +195,13 @@ This option will list the dn of \s-1LDAP\s0 entries using deprecated attributes
 .IP "\-\-ldif\-deprecated" 4
 .IX Item "--ldif-deprecated"
 This option will print an \s-1LDIF\s0 to allow you to remove deprecated attributes from you ldap server. Be carefull and check before applying.
+.IP "\-\-show\-config" 4
+.IX Item "--show-config"
+This option will print a dump of the FusionDirectory configuration \s-1LDAP\s0 node.
+.IP "\-\-set\-config\-VAR=value" 4
+.IX Item "--set-config-VAR=value"
+This option sets the value of a configuration field in the \s-1LDAP.\s0 The value needs to be in the correct \s-1LDAP\s0 format.
+You cannot set multivalued field with this. The var name can be provided with or without the fd prefix.
 .IP "\-\-yes" 4
 .IX Item "--yes"
 This flag will answer \*(L"yes\*(R" to every yes/no question asked by the script
diff --git a/contrib/man/fusiondirectory.conf.5 b/contrib/man/fusiondirectory.conf.5
index ebcaeb194be582b38ec1d082264a24bb0bdc99b8..2730f743da3254a0d2e5a32ab4a547cf12db51b4 100644
--- a/contrib/man/fusiondirectory.conf.5
+++ b/contrib/man/fusiondirectory.conf.5
@@ -133,7 +133,7 @@
 .\" ========================================================================
 .\"
 .IX Title "FUSIONDIRECTORY.CONF 1"
-.TH FUSIONDIRECTORY.CONF 1 "2016-01-05" "FusionDirectory 1.0.9.2" "FusionDirectory Documentation"
+.TH FUSIONDIRECTORY.CONF 1 "2016-01-29" "FusionDirectory 1.0.9.3" "FusionDirectory Documentation"
 .\" For nroff, turn off justification.  Always turn off hyphenation; it makes
 .\" way too many mistakes in technical documents.
 .if n .ad l
diff --git a/contrib/openldap/core-fd-conf.schema b/contrib/openldap/core-fd-conf.schema
index cff504d0596a1f59a0e7ac3073a803c7f3f1c1be..d35e9e1f8a1eca088a2e02088ec8e4d3fcd6a0db 100644
--- a/contrib/openldap/core-fd-conf.schema
+++ b/contrib/openldap/core-fd-conf.schema
@@ -225,6 +225,7 @@ attributetype ( 1.3.6.1.4.1.38414.8.13.8 NAME 'fdForcePasswordDefaultHash'
 
 attributetype ( 1.3.6.1.4.1.38414.8.14.1 NAME 'fdPrimaryGroupFilter'
   DESC 'FusionDirectory - Primary group filter'
+  OBSOLETE
   EQUALITY booleanMatch
   SYNTAX 1.3.6.1.4.1.1466.115.121.1.7
   SINGLE-VALUE )
diff --git a/html/index.php b/html/index.php
index 391ed8555cfdbf747d38b0f4a6bb669b3842a076..00d82646c4dd4afd5fcbf28681348d45ec53067a 100644
--- a/html/index.php
+++ b/html/index.php
@@ -159,12 +159,8 @@ if (!is_readable(CONFIG_DIR.'/'.CONFIG_FILE)) {
 
 /* Parse configuration file */
 $config = new config(CONFIG_DIR.'/'.CONFIG_FILE, $BASE_DIR);
-if ($_SERVER['REQUEST_METHOD'] == 'POST') {
-  session::global_set('DEBUGLEVEL', 0);
-} else {
-  session::global_set('DEBUGLEVEL', $config->get_cfg_value('DEBUGLEVEL'));
-  @DEBUG (DEBUG_CONFIG, __LINE__, __FUNCTION__, __FILE__, $config->data, 'config');
-}
+session::global_set('DEBUGLEVEL', $config->get_cfg_value('DEBUGLEVEL'));
+@DEBUG (DEBUG_CONFIG, __LINE__, __FUNCTION__, __FILE__, $config->data, 'config');
 
 /* Set template compile directory */
 $smarty->compile_dir = $config->get_cfg_value('templateCompileDirectory', SPOOL_DIR);
@@ -196,7 +192,7 @@ if (isset($_POST['server'])) {
 }
 
 $config->set_current($server);
-if (($_SERVER['REQUEST_METHOD'] == 'POST') || ($config->get_cfg_value('casActivated') == 'TRUE')) {
+if ($config->get_cfg_value('casActivated') == 'TRUE') {
   session::global_set('DEBUGLEVEL', 0);
 }
 
diff --git a/include/class_CopyPasteHandler.inc b/include/class_CopyPasteHandler.inc
index bb884e1303634aca951a9821c8571b070ee908ac..c1926f1d6062cfd7491b08a0222bc500254e9665 100644
--- a/include/class_CopyPasteHandler.inc
+++ b/include/class_CopyPasteHandler.inc
@@ -55,7 +55,7 @@ class CopyPasteHandler
    *
    * \param string $config
    */
-  function CopyPasteHandler(&$config)
+  function __construct(&$config)
   {
     $this->config   = &$config;
     $this->current  = NULL;
diff --git a/include/class_config.inc b/include/class_config.inc
index 1d474dbf82db717c5cb7ffda9d1ff5f72a4ce80e..0fce26575c17516b7513be15c6b5bfa9b220dd4c 100644
--- a/include/class_config.inc
+++ b/include/class_config.inc
@@ -537,22 +537,6 @@ class config  {
       $this->data['SERVERS']['FON'][$attrs['dn']] = $entry;
     }
 
-    /* Get logdb server */
-    $ldap->cd($this->current['BASE']);
-    $ldap->search("(objectClass=goLogDBServer)");
-    if ($ldap->count()) {
-      $attrs = $ldap->fetch();
-      if (!isset($attrs['gosaLogDB'][0])) {
-        $attrs['gosaLogDB'][0] = "gomon";
-      }
-      $this->data['SERVERS']['LOG'] = array(
-        'SERVER'    => $attrs['cn'][0],
-        'LOGIN'     => $attrs['goLogAdmin'][0],
-        'DB'        => $attrs['gosaLogDB'][0],
-        'PASSWORD'  => $attrs['goLogPassword'][0]
-      );
-    }
-
     /* Get NFS server lists */
     $tmp  = array("default");
     $tmp2 = array("default");
diff --git a/include/class_filter.inc b/include/class_filter.inc
index 5b30c14aa7f71f909215e6646acb1965e06142c1..f09247ea3f64c626f7622780ead924c0b3e82de1 100644
--- a/include/class_filter.inc
+++ b/include/class_filter.inc
@@ -51,7 +51,7 @@ class filter
    *
    * \param string $filename
    */
-  function filter($filename)
+  function __construct($filename)
   {
     // Load eventually passed filename
     if (!$this->load($filename)) {
diff --git a/include/class_ldap.inc b/include/class_ldap.inc
index 81660cd0d336abbcd5b8633a523f8894070b53c7..4ce75e9508c0aed5f7233fb23b5bd5e723b5f6e8 100644
--- a/include/class_ldap.inc
+++ b/include/class_ldap.inc
@@ -68,7 +68,7 @@ class LDAP
    *
    * \param boolean $tls FALSE
    */
-  function LDAP($binddn, $bindpw, $hostname, $follow_referral = FALSE, $tls = FALSE)
+  function __construct($binddn, $bindpw, $hostname, $follow_referral = FALSE, $tls = FALSE)
   {
     global $config;
     $this->follow_referral  = $follow_referral;
@@ -112,6 +112,7 @@ class LDAP
    * (   => OB
    * )   => CB
    * /   => SL
+   * "   => DQ
    * \22 => DQ
    * \endcode
    *
diff --git a/include/class_listing.inc b/include/class_listing.inc
index b93b6673ae9aa4edc4843f549049d3fc1508270a..58ec895a497d434b695565b86fbb6a3ec3850830 100644
--- a/include/class_listing.inc
+++ b/include/class_listing.inc
@@ -70,7 +70,7 @@ class listing {
    *
    * \param string $data either a filename or an array representation of the XML
    */
-  function listing($data)
+  function __construct($data)
   {
     global $config;
     global $class_mapping;
@@ -1786,6 +1786,7 @@ class listing {
    */
   function getType($dn)
   {
+    $dn = LDAP::fix($dn);
     if (isset($this->objectDnMapping[$dn])) {
       return $this->objectDnMapping[$dn];
     }
diff --git a/include/class_log.inc b/include/class_log.inc
index 6ec634e39f7aed14385e607243419e69b3b497c4..2bd5af57c22af10fc88f715467cbad42d8b6b805 100644
--- a/include/class_log.inc
+++ b/include/class_log.inc
@@ -52,7 +52,7 @@ class log {
    *
    * \sa log()
    */
-  function log($action, $objecttype, $object, $changes_array = array(), $result = "")
+  function __construct($action, $objecttype, $object, $changes_array = array(), $result = "")
   {
     if (!is_array($changes_array)) {
       trigger_error("log(string,string,string,array(),bool). Forth parameter must be an array.");
diff --git a/include/class_plugin.inc b/include/class_plugin.inc
index 59b52a491c4ab36f94df511c60c151ed4a079b4f..1b47d0e42fd72f09f74e7844bce4842af54f98da 100644
--- a/include/class_plugin.inc
+++ b/include/class_plugin.inc
@@ -1362,7 +1362,7 @@ class plugin
                   'newvalue'  => $newvalue,
                   'tab'       => $tabclass,
                 );
-              $filter = plugin::tpl_parse_string($filter, array('oldvalue' => $oldvalue, 'newvalue' => $newvalue));
+              $filter = plugin::tpl_parse_string($filter, array('oldvalue' => ldap_escape($oldvalue, '', LDAP_ESCAPE_FILTER), 'newvalue' => ldap_escape($newvalue, '', LDAP_ESCAPE_FILTER)));
             } elseif ($mode == 'references') {
               $foreignRefs[$objectType]['refs'][$class]['name'] = $cinfos['plShortName'];
               $foreignRefs[$objectType]['refs'][$class]['fields'][$ofield] =
@@ -1372,7 +1372,7 @@ class plugin
                   'field'   => $field,
                   'value'   => $this->parent->by_object[$tabclass]->$field,
                 );
-              $filter = plugin::tpl_parse_string($filter, array('oldvalue' => $this->parent->by_object[$tabclass]->$field));
+              $filter = plugin::tpl_parse_string($filter, array('oldvalue' => ldap_escape($this->parent->by_object[$tabclass]->$field, '', LDAP_ESCAPE_FILTER)));
             }
             if (!preg_match('/^\(.*\)$/', $filter)) {
               $filter = '('.$filter.')';
diff --git a/include/functions.inc b/include/functions.inc
index e2ab825aadbbc60dac027eda5b7f81e7485caf2f..147bd5abd29d14adf5564a86647cd61c250450ee 100644
--- a/include/functions.inc
+++ b/include/functions.inc
@@ -240,6 +240,9 @@ function make_seed()
 function DEBUG($level, $line, $function, $file, $data, $info = "")
 {
   static $first = TRUE;
+  if ($_SERVER['REQUEST_METHOD'] == 'POST') {
+    return;
+  }
   if (session::global_get('DEBUGLEVEL') & $level) {
     if ($first) {
       echo '<div id="debug_handling" class="notice">'.
@@ -1991,7 +1994,7 @@ function gen_uids($rule, $attributes)
     if (preg_match('/\{id(:|!)(\d+)}/', $uid, $m)) {
       $size = $m[2];
 
-      $start = ($m[1] == ":"?0:-1);
+      $start = ($m[1] == ":" ? 0 : -1);
       for ($i = $start, $p = pow(10, $size) - 1; $i < $p; $i++) {
         if ($i == -1) {
           $number = "";
@@ -2074,7 +2077,7 @@ function to_byte($value)
         break;
     }
 
-    return ($mult * (int)substr($value, 0, -1));
+    return $mult * (int)substr($value, 0, -1);
   } else {
     return $value;
   }
@@ -2825,6 +2828,23 @@ function lock_samba_account($mode, $attrs)
   return $modify;
 }
 
+/* Lock or unlock ssh account */
+function lock_ssh_account($mode, $attrs, &$modify)
+{
+  global $config;
+  if (!isset($attrs['sshPublicKey'])) {
+    return;
+  }
+  $modify['sshPublicKey'] = array();
+  for ($i = 0; $i < $attrs['sshPublicKey']['count']; ++$i) {
+    if ($mode == 'LOCK') {
+      $modify['sshPublicKey'][] = preg_replace('/^/', 'disabled-', $attrs['sshPublicKey'][0]);
+    } else {
+      $modify['sshPublicKey'][] = preg_replace('/^disabled-/', '', $attrs['sshPublicKey'][0]);
+    }
+  }
+}
+
 
 /*!
  * \brief Get the Change Sequence Number of a certain DN
@@ -3048,6 +3068,17 @@ function isIpInNet($ip, $net, $mask)
    return (($ip & $mask) == $net);
 }
 
+/*!
+ * \brief Expands an IP v6
+ */
+function expandIPv6 ($ip)
+{
+  $hex  = unpack('H*hex', inet_pton($ip));
+  $ip   = substr(preg_replace('/([A-f0-9]{4})/', "$1:", $hex['hex']), 0, -1);
+
+  return $ip;
+}
+
 /*!
  * \brief Get next id
  *
@@ -3307,4 +3338,79 @@ function initLanguage($lang = NULL)
   session::global_set('lang', $lang);
   return $ret;
 }
+
+if (!function_exists('ldap_escape')) {
+  /* This bloc is for PHP<5.6 */
+  define('LDAP_ESCAPE_FILTER', 0x01);
+  define('LDAP_ESCAPE_DN',     0x02);
+
+  /**
+   * @param string $subject The subject string
+   * @param string $ignore Set of characters to leave untouched
+   * @param int $flags Any combination of LDAP_ESCAPE_* flags to indicate the
+   *                   set(s) of characters to escape.
+   * @return string
+   */
+  function ldap_escape($subject, $ignore = '', $flags = 0)
+  {
+    static $charMaps = array(
+      LDAP_ESCAPE_FILTER => array('\\', '*', '(', ')', "\x00"),
+      LDAP_ESCAPE_DN     => array('\\', ',', '=', '+', '<', '>', ';', '"', '#'),
+    );
+
+    // Pre-process the char maps on first call
+    if (!isset($charMaps[0])) {
+      $charMaps[0] = array();
+      for ($i = 0; $i < 256; $i++) {
+        $charMaps[0][chr($i)] = sprintf('\\%02x', $i);;
+      }
+
+      for ($i = 0, $l = count($charMaps[LDAP_ESCAPE_FILTER]); $i < $l; $i++) {
+        $chr = $charMaps[LDAP_ESCAPE_FILTER][$i];
+        unset($charMaps[LDAP_ESCAPE_FILTER][$i]);
+        $charMaps[LDAP_ESCAPE_FILTER][$chr] = $charMaps[0][$chr];
+      }
+
+      for ($i = 0, $l = count($charMaps[LDAP_ESCAPE_DN]); $i < $l; $i++) {
+        $chr = $charMaps[LDAP_ESCAPE_DN][$i];
+        unset($charMaps[LDAP_ESCAPE_DN][$i]);
+        $charMaps[LDAP_ESCAPE_DN][$chr] = $charMaps[0][$chr];
+      }
+    }
+
+    // Create the base char map to escape
+    $flags = (int)$flags;
+    $charMap = array();
+    if ($flags & LDAP_ESCAPE_FILTER) {
+      $charMap += $charMaps[LDAP_ESCAPE_FILTER];
+    }
+    if ($flags & LDAP_ESCAPE_DN) {
+      $charMap += $charMaps[LDAP_ESCAPE_DN];
+    }
+    if (!$charMap) {
+      $charMap = $charMaps[0];
+    }
+
+    // Remove any chars to ignore from the list
+    $ignore = (string)$ignore;
+    for ($i = 0, $l = strlen($ignore); $i < $l; $i++) {
+      unset($charMap[$ignore[$i]]);
+    }
+
+    // Do the main replacement
+    $result = strtr($subject, $charMap);
+
+    // Encode leading/trailing spaces if LDAP_ESCAPE_DN is passed
+    if ($flags & LDAP_ESCAPE_DN) {
+      if ($result[0] === ' ') {
+        $result = '\\20' . substr($result, 1);
+      }
+      if ($result[strlen($result) - 1] === ' ') {
+        $result = substr($result, 0, -1) . '\\20';
+      }
+    }
+
+    return $result;
+  }
+}
 ?>
diff --git a/include/password-methods/class_password-methods.inc b/include/password-methods/class_password-methods.inc
index 6091b629eaa4d43a9230b827f793c2dc8c1f119a..f7a394e88e58ef5c922763226757b936fadeb5c4 100644
--- a/include/password-methods/class_password-methods.inc
+++ b/include/password-methods/class_password-methods.inc
@@ -174,6 +174,9 @@ class passwordMethod
       // (Un)lock the samba account
       $modify = lock_samba_account($mode, $attrs);
 
+      // (Un)lock SSH keys
+      lock_ssh_account($mode, $attrs, $modify);
+
       // (Un)lock the account by modifying the password hash.
       $pwdClass = new user($config, $dn);
       $pwdClass->callHook('PRE'.$mode, array(), $ret);
diff --git a/include/simpleplugin/class_simplePlugin.inc b/include/simpleplugin/class_simplePlugin.inc
index e8bd8c30674596c745410cb5d1121cb7d96324f2..694c566c5f58b62b65a34c5d5dac5707e4640ad6 100644
--- a/include/simpleplugin/class_simplePlugin.inc
+++ b/include/simpleplugin/class_simplePlugin.inc
@@ -289,10 +289,10 @@ class simplePlugin extends plugin
     $attr = $infos['mainAttr'];
     $ou   = $infos['ou'];
     if ($this->is_template) {
-      $dn = 'cn='.$this->_template_cn.',ou=templates,'.$ou.$this->base;
+      $dn = 'cn='.ldap_escape($this->_template_cn, '', LDAP_ESCAPE_DN).',ou=templates,'.$ou.$this->base;
       return $dn;
     }
-    return $attr.'='.$this->attributesAccess[$attr]->computeLdapValue().','.$ou.$this->base;
+    return $attr.'='.ldap_escape($this->attributesAccess[$attr]->computeLdapValue(), '', LDAP_ESCAPE_DN).','.$ou.$this->base;
   }
 
   function getRequiredAttributes()
diff --git a/include/simpleplugin/class_simpleTabs.inc b/include/simpleplugin/class_simpleTabs.inc
index f090895e64c0b25aa3a2787965563577d758027e..c11825ca85ddd2f34e6c98e92d5d4612588100e8 100644
--- a/include/simpleplugin/class_simpleTabs.inc
+++ b/include/simpleplugin/class_simpleTabs.inc
@@ -392,7 +392,7 @@ class simpleTabs
   function save()
   {
     $baseobject = $this->getBaseObject();
-    $new_dn     = $baseobject->compute_dn();
+    $new_dn     = LDAP::convert($baseobject->compute_dn());
     @DEBUG (DEBUG_TRACE, __LINE__, __FUNCTION__, __FILE__, $new_dn, "Saving");
 
     /* Move ? */
diff --git a/include/variables_common.inc b/include/variables_common.inc
index 9ce204740a939171e45cdaa3919e3981fda3a8a9..6d52f53c8d0f9339c5366591ba32fe30e955ab1e 100644
--- a/include/variables_common.inc
+++ b/include/variables_common.inc
@@ -63,7 +63,7 @@ define("FPDF_FONTPATH", "/usr/share/php/fpdf/font/"); /*! Define fpdf font path
 /*!
  * \brief FusionDirectory Version
  */
-define ("FD_VERSION", "1.0.9.2"); /*! Define FusionDirectory version */
+define ("FD_VERSION", "1.0.9.3"); /*! Define FusionDirectory version */
 
 /*!
  * \brief FusionDirectory config object RDN
diff --git a/locale/ar/fusiondirectory.po b/locale/ar/fusiondirectory.po
index a3dca38978778e77eff4b7cb7d3a95c4f4961351..652f4bc41c6ecbd22ab69ea562843628cce24d13 100644
--- a/locale/ar/fusiondirectory.po
+++ b/locale/ar/fusiondirectory.po
@@ -7,8 +7,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory-109\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2016-01-04 11:54+0100\n"
-"PO-Revision-Date: 2016-01-04 10:52+0000\n"
+"POT-Creation-Date: 2016-01-22 11:26+0100\n"
+"PO-Revision-Date: 2016-01-22 10:24+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n"
 "Language-Team: Arabic (http://www.transifex.com/fusiondirectory/FusionDirectory-109/language/ar/)\n"
 "MIME-Version: 1.0\n"
@@ -95,7 +95,7 @@ msgstr "رقم الفاكس"
 
 #: plugins/admin/groups/class_roleGeneric.inc:78
 #: plugins/admin/users/class_userManagement.inc:42
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:29
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:27
 #: setup/class_setupStep_Migrate.inc:871
 msgid "Users"
 msgstr ""
@@ -204,10 +204,10 @@ msgid "Only allow this group to connect to this list of hosts"
 msgstr ""
 
 #: plugins/admin/groups/class_group.inc:181
-#: plugins/personal/posix/class_posixAccount.inc:458 include/functions.inc:791
-#: include/functions.inc:2545 include/class_xml.inc:55
+#: plugins/personal/posix/class_posixAccount.inc:458 include/functions.inc:794
+#: include/functions.inc:2548 include/class_xml.inc:55
 #: include/simpleplugin/class_simpleTabs.inc:325 html/index.php:56
-#: html/index.php:62 html/index.php:485 html/class_passwordRecovery.inc:378
+#: html/index.php:62 html/index.php:481 html/class_passwordRecovery.inc:378
 #: setup/class_setupStep_Migrate.inc:572
 #: setup/class_setupStep_Migrate.inc:1083
 #: setup/class_setupStep_Migrate.inc:1202
@@ -250,7 +250,7 @@ msgstr ""
 msgid "Objects member of this group"
 msgstr ""
 
-#: plugins/admin/groups/class_ogroup.inc:317
+#: plugins/admin/groups/class_ogroup.inc:318
 msgid ""
 "Putting both workstations and terminals in the same group is not allowed"
 msgstr ""
@@ -873,19 +873,19 @@ msgstr ""
 msgid "Statistics"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:30
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:28
 msgid "Statistics about users"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:41
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:39
 msgid "Users statistics"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:46
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:44
 msgid "Groups statistics"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:51
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:49
 #: plugins/addons/dashboard/users_accounts.tpl.c:8
 msgid "Expired accounts"
 msgstr ""
@@ -2106,11 +2106,11 @@ msgstr ""
 #: include/class_config.inc:479 include/class_msgPool.inc:215
 #: include/class_msgPool.inc:235 include/class_msgPool.inc:265
 #: include/class_msgPool.inc:682 include/class_msgPool.inc:713
-#: include/class_msgPool.inc:740 include/functions.inc:3075
-#: include/functions.inc:3096 include/functions.inc:3126
-#: include/functions.inc:3134 include/functions.inc:3146
-#: include/functions.inc:3150 include/functions.inc:3157
-#: include/functions.inc:3166 include/functions.inc:3228
+#: include/class_msgPool.inc:740 include/functions.inc:3106
+#: include/functions.inc:3127 include/functions.inc:3157
+#: include/functions.inc:3165 include/functions.inc:3177
+#: include/functions.inc:3181 include/functions.inc:3188
+#: include/functions.inc:3197 include/functions.inc:3259
 #: include/class_msg_dialog.inc:128 include/class_xml.inc:58
 #: include/class_plugin.inc:1663 include/class_CopyPasteHandler.inc:278
 #: include/simpleplugin/class_dialogAttributes.inc:733
@@ -2121,11 +2121,12 @@ msgstr ""
 #: include/simpleplugin/class_attribute.inc:1877
 #: include/simpleplugin/class_attribute.inc:1879
 #: include/simpleplugin/class_simpleTabs.inc:90
+#: include/simpleplugin/class_simpleTabs.inc:405
 #: include/password-methods/class_password-methods-sasl.inc:60
 #: include/password-methods/class_password-methods-sasl.inc:86
-#: include/password-methods/class_password-methods.inc:434
-#: include/password-methods/class_password-methods.inc:444
-#: include/class_SnapshotHandler.inc:415 html/index.php:438 html/index.php:448
+#: include/password-methods/class_password-methods.inc:437
+#: include/password-methods/class_password-methods.inc:447
+#: include/class_SnapshotHandler.inc:415 html/index.php:434 html/index.php:444
 #: setup/class_setupStep_Migrate.inc:935
 #: ihtml/themes/default/msg_dialog.tpl.c:2 setup/setup_checks.tpl.c:5
 msgid "Error"
@@ -2244,8 +2245,8 @@ msgid "XML error in fusiondirectory.conf: %s at line %d"
 msgstr ""
 
 #: include/class_config.inc:162 include/class_config.inc:300
-#: include/class_config.inc:1001 include/class_config.inc:1014
-#: include/functions.inc:660 include/class_timezone.inc:51
+#: include/class_config.inc:985 include/class_config.inc:998
+#: include/functions.inc:663 include/class_timezone.inc:51
 #: include/password-methods/class_password-methods-sha.inc:71
 #: include/password-methods/class_password-methods-ssha.inc:75
 #: include/password-methods/class_password-methods-ssha.inc:91
@@ -2262,16 +2263,16 @@ msgid ""
 msgstr ""
 
 #: include/class_config.inc:337 include/class_ldap.inc:917
-#: include/class_ldap.inc:1371 include/functions.inc:523
-#: include/functions.inc:675 include/functions.inc:722
-#: include/functions.inc:783 include/functions.inc:838
-#: include/functions.inc:2965 include/simpleplugin/class_simplePlugin.inc:545
+#: include/class_ldap.inc:1371 include/functions.inc:526
+#: include/functions.inc:678 include/functions.inc:725
+#: include/functions.inc:786 include/functions.inc:841
+#: include/functions.inc:2985 include/simpleplugin/class_simplePlugin.inc:545
 #: include/simpleplugin/class_attribute.inc:2895
-#: include/password-methods/class_password-methods.inc:196
+#: include/password-methods/class_password-methods.inc:199
 #: include/class_SnapshotHandler.inc:50 include/class_SnapshotHandler.inc:244
 #: include/class_SnapshotHandler.inc:277 include/class_SnapshotHandler.inc:292
 #: include/class_SnapshotHandler.inc:422 include/class_SnapshotHandler.inc:425
-#: html/index.php:364 html/class_passwordRecovery.inc:497
+#: html/index.php:360 html/class_passwordRecovery.inc:497
 #: setup/class_setupStep_Migrate.inc:451
 #: setup/class_setupStep_Migrate.inc:1130
 msgid "LDAP error"
@@ -2286,25 +2287,25 @@ msgstr ""
 msgid "The selected mail method (class %s) is not available"
 msgstr ""
 
-#: include/class_config.inc:1002
+#: include/class_config.inc:986
 #, php-format
 msgid ""
 "The snapshot functionality is enabled, but the required variable '%s' is not"
 " set."
 msgstr ""
 
-#: include/class_config.inc:1015
+#: include/class_config.inc:999
 #, php-format
 msgid ""
 "The snapshot functionality is enabled, but the required compression module "
 "is missing. Please install '%s'."
 msgstr ""
 
-#: include/class_config.inc:1120
+#: include/class_config.inc:1104
 msgid "All categories"
 msgstr ""
 
-#: include/class_config.inc:1247
+#: include/class_config.inc:1231
 msgid "My account"
 msgstr ""
 
@@ -2318,10 +2319,10 @@ msgid "LDAP performance is poor: last query took about %.2fs!"
 msgstr ""
 
 #: include/class_ldap.inc:868 include/class_ldap.inc:904
-#: include/functions.inc:565 include/functions.inc:650
-#: include/functions.inc:770 include/functions.inc:1189
-#: include/functions.inc:2272 include/functions.inc:2314
-#: include/functions.inc:2343 include/class_session.inc:50
+#: include/functions.inc:568 include/functions.inc:653
+#: include/functions.inc:773 include/functions.inc:1192
+#: include/functions.inc:2275 include/functions.inc:2317
+#: include/functions.inc:2346 include/class_session.inc:50
 #: include/class_session.inc:87 include/class_session.inc:125
 #: include/class_log.inc:96 include/class_acl.inc:118
 msgid "Internal error"
@@ -2947,7 +2948,7 @@ msgid ""
 "Fatal error: cannot instantiate class '%s' - try running '%s' to fix this"
 msgstr ""
 
-#: include/functions.inc:493 include/functions.inc:3263
+#: include/functions.inc:496 include/functions.inc:3294
 #: include/class_xml.inc:61 include/simpleplugin/class_simplePlugin.inc:263
 #: include/simpleplugin/class_simplePlugin.inc:268
 #: include/simpleplugin/class_simplePlugin.inc:280
@@ -2955,246 +2956,246 @@ msgstr ""
 msgid "Fatal error"
 msgstr ""
 
-#: include/functions.inc:494
+#: include/functions.inc:497
 #, php-format
 msgid "FATAL: Error when connecting the LDAP. Server said '%s'."
 msgstr ""
 
-#: include/functions.inc:565
+#: include/functions.inc:568
 msgid ""
 "Login (uid) is not unique inside the LDAP tree. Please contact your "
 "administrator."
 msgstr ""
 
-#: include/functions.inc:598
+#: include/functions.inc:601
 msgid "Authentication error"
 msgstr ""
 
-#: include/functions.inc:599
+#: include/functions.inc:602
 msgid ""
 "It seems your user password has expired. Please use <a "
 "href=\"recovery.php\">password recovery</a> to change it."
 msgstr ""
 
-#: include/functions.inc:650 include/functions.inc:770
+#: include/functions.inc:653 include/functions.inc:773
 msgid "Error while adding a lock. Contact the developers!"
 msgstr ""
 
-#: include/functions.inc:660
+#: include/functions.inc:663
 #, php-format
 msgid ""
 "Cannot create locking information in LDAP tree. Please contact your "
 "administrator!"
 msgstr ""
 
-#: include/functions.inc:660
+#: include/functions.inc:663
 #, php-format
 msgid "LDAP server returned: %s"
 msgstr ""
 
-#: include/functions.inc:791
+#: include/functions.inc:794
 msgid ""
 "Found multiple locks for object to be locked. This should not happen - "
 "cleaning up multiple references."
 msgstr ""
 
-#: include/functions.inc:1109
+#: include/functions.inc:1112
 #, php-format
 msgid "The size limit of %d entries is exceed!"
 msgstr ""
 
-#: include/functions.inc:1111
+#: include/functions.inc:1114
 #, php-format
 msgid ""
 "Set the new size limit to %s and show me this message if the limit still "
 "exceeds"
 msgstr ""
 
-#: include/functions.inc:1128
+#: include/functions.inc:1131
 msgid "Configure"
 msgstr ""
 
-#: include/functions.inc:1133
+#: include/functions.inc:1136
 msgid "incomplete"
 msgstr ""
 
-#: include/functions.inc:1538
+#: include/functions.inc:1541
 msgid "Continue anyway"
 msgstr ""
 
-#: include/functions.inc:1540
+#: include/functions.inc:1543
 msgid "Edit anyway"
 msgstr ""
 
-#: include/functions.inc:1542
+#: include/functions.inc:1545
 #, php-format
 msgid "You're going to edit the LDAP entry/entries %s"
 msgstr ""
 
-#: include/functions.inc:1796
+#: include/functions.inc:1799
 msgid "Entries per page"
 msgstr ""
 
-#: include/functions.inc:1827 include/class_filter.inc:353
+#: include/functions.inc:1830 include/class_filter.inc:353
 msgid "Apply filter"
 msgstr ""
 
-#: include/functions.inc:2095
+#: include/functions.inc:2098
 #, php-format
 msgid "%sB"
 msgstr ""
 
-#: include/functions.inc:2096
+#: include/functions.inc:2099
 #, php-format
 msgid "%sKiB"
 msgstr ""
 
-#: include/functions.inc:2097
+#: include/functions.inc:2100
 #, php-format
 msgid "%sMiB"
 msgstr ""
 
-#: include/functions.inc:2098
+#: include/functions.inc:2101
 #, php-format
 msgid "%sGiB"
 msgstr ""
 
-#: include/functions.inc:2099
+#: include/functions.inc:2102
 #, php-format
 msgid "%sTiB"
 msgstr ""
 
-#: include/functions.inc:2100
+#: include/functions.inc:2103
 #, php-format
 msgid "%sPiB"
 msgstr ""
 
-#: include/functions.inc:2101
+#: include/functions.inc:2104
 #, php-format
 msgid "%sEiB"
 msgstr ""
 
-#: include/functions.inc:2102
+#: include/functions.inc:2105
 #, php-format
 msgid "%sZiB"
 msgstr ""
 
-#: include/functions.inc:2103
+#: include/functions.inc:2106
 #, php-format
 msgid "%sYiB"
 msgstr ""
 
-#: include/functions.inc:2135 include/class_filter.inc:315
+#: include/functions.inc:2138 include/class_filter.inc:315
 msgid "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
 msgstr ""
 
-#: include/functions.inc:2272
+#: include/functions.inc:2275
 #, php-format
 msgid ""
 "File '%s' could not be deleted. Try fusiondirectory-setup --check-"
 "directories to fix permissions."
 msgstr ""
 
-#: include/functions.inc:2314
+#: include/functions.inc:2317
 msgid "Cannot write to revision file!"
 msgstr ""
 
-#: include/functions.inc:2343
+#: include/functions.inc:2346
 msgid "Cannot read to revision file!"
 msgstr ""
 
-#: include/functions.inc:2545
+#: include/functions.inc:2548
 msgid "'nextIdHook' is not available. Using default base!"
 msgstr ""
 
-#: include/functions.inc:2563
+#: include/functions.inc:2566
 msgid "LDAP warning"
 msgstr ""
 
-#: include/functions.inc:2563
+#: include/functions.inc:2566
 msgid "Cannot get schema information from server. No schema check possible!"
 msgstr ""
 
-#: include/functions.inc:2581
+#: include/functions.inc:2584
 msgid ""
 "Used to lock currently edited entries to avoid multiple changes at the same "
 "time."
 msgstr ""
 
-#: include/functions.inc:2593
+#: include/functions.inc:2596
 #, php-format
 msgid "Missing required object class '%s'!"
 msgstr ""
 
-#: include/functions.inc:2596
+#: include/functions.inc:2599
 #, php-format
 msgid "Missing optional object class '%s'!"
 msgstr ""
 
-#: include/functions.inc:2600
+#: include/functions.inc:2603
 #, php-format
 msgid "Class(es) available"
 msgstr ""
 
-#: include/functions.inc:2620
+#: include/functions.inc:2623
 msgid ""
 "You have installed the mixed groups plugin, but your schema configuration "
 "does not support this."
 msgstr ""
 
-#: include/functions.inc:2621
+#: include/functions.inc:2624
 msgid ""
 "In order to use mixed groups the objectClass \"posixGroup\" must be "
 "AUXILIARY"
 msgstr ""
 
-#: include/functions.inc:2624
+#: include/functions.inc:2627
 msgid ""
 "Your schema is configured to support mixed groups, but this plugin is not "
 "present."
 msgstr ""
 
-#: include/functions.inc:2625
+#: include/functions.inc:2628
 msgid "The objectClass \"posixGroup\" must be STRUCTURAL"
 msgstr ""
 
-#: include/functions.inc:3075 include/functions.inc:3096
-#: include/functions.inc:3134 include/functions.inc:3146
-#: include/functions.inc:3150 include/functions.inc:3157
-#: include/functions.inc:3166
+#: include/functions.inc:3106 include/functions.inc:3127
+#: include/functions.inc:3165 include/functions.inc:3177
+#: include/functions.inc:3181 include/functions.inc:3188
+#: include/functions.inc:3197
 msgid "Cannot allocate a free ID:"
 msgstr ""
 
-#: include/functions.inc:3075
+#: include/functions.inc:3106
 msgid "unknown idAllocation method!"
 msgstr ""
 
-#: include/functions.inc:3096
+#: include/functions.inc:3127
 #, php-format
 msgid "%sPoolMin >= %sPoolMax!"
 msgstr ""
 
-#: include/functions.inc:3126
+#: include/functions.inc:3157
 msgid "Cannot create sambaUnixIdPool entry!"
 msgstr ""
 
-#: include/functions.inc:3134
+#: include/functions.inc:3165
 msgid "sambaUnixIdPool is not unique!"
 msgstr ""
 
-#: include/functions.inc:3146 include/functions.inc:3150
+#: include/functions.inc:3177 include/functions.inc:3181
 msgid "no ID available!"
 msgstr ""
 
-#: include/functions.inc:3166
+#: include/functions.inc:3197
 msgid "maximum tries exceeded!"
 msgstr ""
 
-#: include/functions.inc:3228
+#: include/functions.inc:3259
 msgid "Cannot allocate a free ID!"
 msgstr ""
 
-#: include/functions.inc:3264
+#: include/functions.inc:3295
 #, php-format
 msgid "Cannot locate file '%s' - please run '%s' to fix this"
 msgstr ""
@@ -3597,6 +3598,11 @@ msgstr ""
 msgid "Delete process has been canceled by plugin '%s': %s"
 msgstr ""
 
+#: include/simpleplugin/class_simpleTabs.inc:405
+#, php-format
+msgid "Move from \"%s\" to \"%s\" failed"
+msgstr ""
+
 #: include/class_timezone.inc:52
 #, php-format
 msgid "The timezone setting \"%s\" in your configuration is not valid."
@@ -3659,63 +3665,63 @@ msgid ""
 "fusiondirectory-setup --check-config to fix this."
 msgstr ""
 
-#: html/index.php:175
+#: html/index.php:171
 msgid "Smarty error"
 msgstr ""
 
-#: html/index.php:177
+#: html/index.php:173
 #, php-format
 msgid "Directory \"%s\" specified as compile directory is not accessible!"
 msgstr ""
 
-#: html/index.php:212
+#: html/index.php:208
 msgid "Your FusionDirectory session has expired!"
 msgstr ""
 
-#: html/index.php:215
+#: html/index.php:211
 msgid "Your IP has changed!"
 msgstr ""
 
-#: html/index.php:218
+#: html/index.php:214
 #, php-format
 msgid "Invalid plugin parameter \"%s\"!"
 msgstr ""
 
-#: html/index.php:221
+#: html/index.php:217
 msgid "No session found!"
 msgstr ""
 
-#: html/index.php:256
+#: html/index.php:252
 msgid "LDAP schema check reported errors:"
 msgstr ""
 
-#: html/index.php:282
+#: html/index.php:278
 msgid "Please specify a valid username!"
 msgstr ""
 
-#: html/index.php:285
+#: html/index.php:281
 msgid "Please specify your password!"
 msgstr ""
 
-#: html/index.php:304
+#: html/index.php:300
 msgid "Please check the username/password combination."
 msgstr ""
 
-#: html/index.php:337
+#: html/index.php:333
 msgid "Account locked. Please contact your system administrator!"
 msgstr ""
 
-#: html/index.php:440
+#: html/index.php:436
 #, php-format
 msgid "CAS user \"%s\" could not be found in the LDAP"
 msgstr ""
 
-#: html/index.php:450
+#: html/index.php:446
 #, php-format
 msgid "CAS user \"%s\" match several users in the LDAP"
 msgstr ""
 
-#: html/index.php:485
+#: html/index.php:481
 msgid ""
 "Your browser has cookies disabled. Please enable cookies and reload this "
 "page before logging in!"
diff --git a/locale/ca/fusiondirectory.po b/locale/ca/fusiondirectory.po
index fdfecbacfce1a83de70facba5648cef84bfe29f0..ae3a991d7140f44a43d080f7bdabf64342de5453 100644
--- a/locale/ca/fusiondirectory.po
+++ b/locale/ca/fusiondirectory.po
@@ -7,8 +7,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory-109\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2016-01-04 11:54+0100\n"
-"PO-Revision-Date: 2016-01-04 10:52+0000\n"
+"POT-Creation-Date: 2016-01-22 11:26+0100\n"
+"PO-Revision-Date: 2016-01-22 10:24+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n"
 "Language-Team: Catalan (http://www.transifex.com/fusiondirectory/FusionDirectory-109/language/ca/)\n"
 "MIME-Version: 1.0\n"
@@ -95,7 +95,7 @@ msgstr "Número de fax"
 
 #: plugins/admin/groups/class_roleGeneric.inc:78
 #: plugins/admin/users/class_userManagement.inc:42
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:29
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:27
 #: setup/class_setupStep_Migrate.inc:871
 msgid "Users"
 msgstr ""
@@ -204,10 +204,10 @@ msgid "Only allow this group to connect to this list of hosts"
 msgstr ""
 
 #: plugins/admin/groups/class_group.inc:181
-#: plugins/personal/posix/class_posixAccount.inc:458 include/functions.inc:791
-#: include/functions.inc:2545 include/class_xml.inc:55
+#: plugins/personal/posix/class_posixAccount.inc:458 include/functions.inc:794
+#: include/functions.inc:2548 include/class_xml.inc:55
 #: include/simpleplugin/class_simpleTabs.inc:325 html/index.php:56
-#: html/index.php:62 html/index.php:485 html/class_passwordRecovery.inc:378
+#: html/index.php:62 html/index.php:481 html/class_passwordRecovery.inc:378
 #: setup/class_setupStep_Migrate.inc:572
 #: setup/class_setupStep_Migrate.inc:1083
 #: setup/class_setupStep_Migrate.inc:1202
@@ -250,7 +250,7 @@ msgstr ""
 msgid "Objects member of this group"
 msgstr ""
 
-#: plugins/admin/groups/class_ogroup.inc:317
+#: plugins/admin/groups/class_ogroup.inc:318
 msgid ""
 "Putting both workstations and terminals in the same group is not allowed"
 msgstr ""
@@ -873,19 +873,19 @@ msgstr ""
 msgid "Statistics"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:30
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:28
 msgid "Statistics about users"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:41
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:39
 msgid "Users statistics"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:46
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:44
 msgid "Groups statistics"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:51
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:49
 #: plugins/addons/dashboard/users_accounts.tpl.c:8
 msgid "Expired accounts"
 msgstr ""
@@ -2106,11 +2106,11 @@ msgstr ""
 #: include/class_config.inc:479 include/class_msgPool.inc:215
 #: include/class_msgPool.inc:235 include/class_msgPool.inc:265
 #: include/class_msgPool.inc:682 include/class_msgPool.inc:713
-#: include/class_msgPool.inc:740 include/functions.inc:3075
-#: include/functions.inc:3096 include/functions.inc:3126
-#: include/functions.inc:3134 include/functions.inc:3146
-#: include/functions.inc:3150 include/functions.inc:3157
-#: include/functions.inc:3166 include/functions.inc:3228
+#: include/class_msgPool.inc:740 include/functions.inc:3106
+#: include/functions.inc:3127 include/functions.inc:3157
+#: include/functions.inc:3165 include/functions.inc:3177
+#: include/functions.inc:3181 include/functions.inc:3188
+#: include/functions.inc:3197 include/functions.inc:3259
 #: include/class_msg_dialog.inc:128 include/class_xml.inc:58
 #: include/class_plugin.inc:1663 include/class_CopyPasteHandler.inc:278
 #: include/simpleplugin/class_dialogAttributes.inc:733
@@ -2121,11 +2121,12 @@ msgstr ""
 #: include/simpleplugin/class_attribute.inc:1877
 #: include/simpleplugin/class_attribute.inc:1879
 #: include/simpleplugin/class_simpleTabs.inc:90
+#: include/simpleplugin/class_simpleTabs.inc:405
 #: include/password-methods/class_password-methods-sasl.inc:60
 #: include/password-methods/class_password-methods-sasl.inc:86
-#: include/password-methods/class_password-methods.inc:434
-#: include/password-methods/class_password-methods.inc:444
-#: include/class_SnapshotHandler.inc:415 html/index.php:438 html/index.php:448
+#: include/password-methods/class_password-methods.inc:437
+#: include/password-methods/class_password-methods.inc:447
+#: include/class_SnapshotHandler.inc:415 html/index.php:434 html/index.php:444
 #: setup/class_setupStep_Migrate.inc:935
 #: ihtml/themes/default/msg_dialog.tpl.c:2 setup/setup_checks.tpl.c:5
 msgid "Error"
@@ -2244,8 +2245,8 @@ msgid "XML error in fusiondirectory.conf: %s at line %d"
 msgstr ""
 
 #: include/class_config.inc:162 include/class_config.inc:300
-#: include/class_config.inc:1001 include/class_config.inc:1014
-#: include/functions.inc:660 include/class_timezone.inc:51
+#: include/class_config.inc:985 include/class_config.inc:998
+#: include/functions.inc:663 include/class_timezone.inc:51
 #: include/password-methods/class_password-methods-sha.inc:71
 #: include/password-methods/class_password-methods-ssha.inc:75
 #: include/password-methods/class_password-methods-ssha.inc:91
@@ -2262,16 +2263,16 @@ msgid ""
 msgstr ""
 
 #: include/class_config.inc:337 include/class_ldap.inc:917
-#: include/class_ldap.inc:1371 include/functions.inc:523
-#: include/functions.inc:675 include/functions.inc:722
-#: include/functions.inc:783 include/functions.inc:838
-#: include/functions.inc:2965 include/simpleplugin/class_simplePlugin.inc:545
+#: include/class_ldap.inc:1371 include/functions.inc:526
+#: include/functions.inc:678 include/functions.inc:725
+#: include/functions.inc:786 include/functions.inc:841
+#: include/functions.inc:2985 include/simpleplugin/class_simplePlugin.inc:545
 #: include/simpleplugin/class_attribute.inc:2895
-#: include/password-methods/class_password-methods.inc:196
+#: include/password-methods/class_password-methods.inc:199
 #: include/class_SnapshotHandler.inc:50 include/class_SnapshotHandler.inc:244
 #: include/class_SnapshotHandler.inc:277 include/class_SnapshotHandler.inc:292
 #: include/class_SnapshotHandler.inc:422 include/class_SnapshotHandler.inc:425
-#: html/index.php:364 html/class_passwordRecovery.inc:497
+#: html/index.php:360 html/class_passwordRecovery.inc:497
 #: setup/class_setupStep_Migrate.inc:451
 #: setup/class_setupStep_Migrate.inc:1130
 msgid "LDAP error"
@@ -2286,25 +2287,25 @@ msgstr ""
 msgid "The selected mail method (class %s) is not available"
 msgstr ""
 
-#: include/class_config.inc:1002
+#: include/class_config.inc:986
 #, php-format
 msgid ""
 "The snapshot functionality is enabled, but the required variable '%s' is not"
 " set."
 msgstr ""
 
-#: include/class_config.inc:1015
+#: include/class_config.inc:999
 #, php-format
 msgid ""
 "The snapshot functionality is enabled, but the required compression module "
 "is missing. Please install '%s'."
 msgstr ""
 
-#: include/class_config.inc:1120
+#: include/class_config.inc:1104
 msgid "All categories"
 msgstr ""
 
-#: include/class_config.inc:1247
+#: include/class_config.inc:1231
 msgid "My account"
 msgstr "El meu compte"
 
@@ -2318,10 +2319,10 @@ msgid "LDAP performance is poor: last query took about %.2fs!"
 msgstr ""
 
 #: include/class_ldap.inc:868 include/class_ldap.inc:904
-#: include/functions.inc:565 include/functions.inc:650
-#: include/functions.inc:770 include/functions.inc:1189
-#: include/functions.inc:2272 include/functions.inc:2314
-#: include/functions.inc:2343 include/class_session.inc:50
+#: include/functions.inc:568 include/functions.inc:653
+#: include/functions.inc:773 include/functions.inc:1192
+#: include/functions.inc:2275 include/functions.inc:2317
+#: include/functions.inc:2346 include/class_session.inc:50
 #: include/class_session.inc:87 include/class_session.inc:125
 #: include/class_log.inc:96 include/class_acl.inc:118
 msgid "Internal error"
@@ -2947,7 +2948,7 @@ msgid ""
 "Fatal error: cannot instantiate class '%s' - try running '%s' to fix this"
 msgstr ""
 
-#: include/functions.inc:493 include/functions.inc:3263
+#: include/functions.inc:496 include/functions.inc:3294
 #: include/class_xml.inc:61 include/simpleplugin/class_simplePlugin.inc:263
 #: include/simpleplugin/class_simplePlugin.inc:268
 #: include/simpleplugin/class_simplePlugin.inc:280
@@ -2955,246 +2956,246 @@ msgstr ""
 msgid "Fatal error"
 msgstr "Error fatal"
 
-#: include/functions.inc:494
+#: include/functions.inc:497
 #, php-format
 msgid "FATAL: Error when connecting the LDAP. Server said '%s'."
 msgstr ""
 
-#: include/functions.inc:565
+#: include/functions.inc:568
 msgid ""
 "Login (uid) is not unique inside the LDAP tree. Please contact your "
 "administrator."
 msgstr ""
 
-#: include/functions.inc:598
+#: include/functions.inc:601
 msgid "Authentication error"
 msgstr "Error d'autenticació."
 
-#: include/functions.inc:599
+#: include/functions.inc:602
 msgid ""
 "It seems your user password has expired. Please use <a "
 "href=\"recovery.php\">password recovery</a> to change it."
 msgstr ""
 
-#: include/functions.inc:650 include/functions.inc:770
+#: include/functions.inc:653 include/functions.inc:773
 msgid "Error while adding a lock. Contact the developers!"
 msgstr ""
 
-#: include/functions.inc:660
+#: include/functions.inc:663
 #, php-format
 msgid ""
 "Cannot create locking information in LDAP tree. Please contact your "
 "administrator!"
 msgstr ""
 
-#: include/functions.inc:660
+#: include/functions.inc:663
 #, php-format
 msgid "LDAP server returned: %s"
 msgstr ""
 
-#: include/functions.inc:791
+#: include/functions.inc:794
 msgid ""
 "Found multiple locks for object to be locked. This should not happen - "
 "cleaning up multiple references."
 msgstr ""
 
-#: include/functions.inc:1109
+#: include/functions.inc:1112
 #, php-format
 msgid "The size limit of %d entries is exceed!"
 msgstr ""
 
-#: include/functions.inc:1111
+#: include/functions.inc:1114
 #, php-format
 msgid ""
 "Set the new size limit to %s and show me this message if the limit still "
 "exceeds"
 msgstr ""
 
-#: include/functions.inc:1128
+#: include/functions.inc:1131
 msgid "Configure"
 msgstr ""
 
-#: include/functions.inc:1133
+#: include/functions.inc:1136
 msgid "incomplete"
 msgstr ""
 
-#: include/functions.inc:1538
+#: include/functions.inc:1541
 msgid "Continue anyway"
 msgstr ""
 
-#: include/functions.inc:1540
+#: include/functions.inc:1543
 msgid "Edit anyway"
 msgstr ""
 
-#: include/functions.inc:1542
+#: include/functions.inc:1545
 #, php-format
 msgid "You're going to edit the LDAP entry/entries %s"
 msgstr ""
 
-#: include/functions.inc:1796
+#: include/functions.inc:1799
 msgid "Entries per page"
 msgstr ""
 
-#: include/functions.inc:1827 include/class_filter.inc:353
+#: include/functions.inc:1830 include/class_filter.inc:353
 msgid "Apply filter"
 msgstr ""
 
-#: include/functions.inc:2095
+#: include/functions.inc:2098
 #, php-format
 msgid "%sB"
 msgstr ""
 
-#: include/functions.inc:2096
+#: include/functions.inc:2099
 #, php-format
 msgid "%sKiB"
 msgstr ""
 
-#: include/functions.inc:2097
+#: include/functions.inc:2100
 #, php-format
 msgid "%sMiB"
 msgstr ""
 
-#: include/functions.inc:2098
+#: include/functions.inc:2101
 #, php-format
 msgid "%sGiB"
 msgstr ""
 
-#: include/functions.inc:2099
+#: include/functions.inc:2102
 #, php-format
 msgid "%sTiB"
 msgstr ""
 
-#: include/functions.inc:2100
+#: include/functions.inc:2103
 #, php-format
 msgid "%sPiB"
 msgstr ""
 
-#: include/functions.inc:2101
+#: include/functions.inc:2104
 #, php-format
 msgid "%sEiB"
 msgstr ""
 
-#: include/functions.inc:2102
+#: include/functions.inc:2105
 #, php-format
 msgid "%sZiB"
 msgstr ""
 
-#: include/functions.inc:2103
+#: include/functions.inc:2106
 #, php-format
 msgid "%sYiB"
 msgstr ""
 
-#: include/functions.inc:2135 include/class_filter.inc:315
+#: include/functions.inc:2138 include/class_filter.inc:315
 msgid "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
 msgstr ""
 
-#: include/functions.inc:2272
+#: include/functions.inc:2275
 #, php-format
 msgid ""
 "File '%s' could not be deleted. Try fusiondirectory-setup --check-"
 "directories to fix permissions."
 msgstr ""
 
-#: include/functions.inc:2314
+#: include/functions.inc:2317
 msgid "Cannot write to revision file!"
 msgstr ""
 
-#: include/functions.inc:2343
+#: include/functions.inc:2346
 msgid "Cannot read to revision file!"
 msgstr ""
 
-#: include/functions.inc:2545
+#: include/functions.inc:2548
 msgid "'nextIdHook' is not available. Using default base!"
 msgstr ""
 
-#: include/functions.inc:2563
+#: include/functions.inc:2566
 msgid "LDAP warning"
 msgstr ""
 
-#: include/functions.inc:2563
+#: include/functions.inc:2566
 msgid "Cannot get schema information from server. No schema check possible!"
 msgstr ""
 
-#: include/functions.inc:2581
+#: include/functions.inc:2584
 msgid ""
 "Used to lock currently edited entries to avoid multiple changes at the same "
 "time."
 msgstr ""
 
-#: include/functions.inc:2593
+#: include/functions.inc:2596
 #, php-format
 msgid "Missing required object class '%s'!"
 msgstr ""
 
-#: include/functions.inc:2596
+#: include/functions.inc:2599
 #, php-format
 msgid "Missing optional object class '%s'!"
 msgstr ""
 
-#: include/functions.inc:2600
+#: include/functions.inc:2603
 #, php-format
 msgid "Class(es) available"
 msgstr ""
 
-#: include/functions.inc:2620
+#: include/functions.inc:2623
 msgid ""
 "You have installed the mixed groups plugin, but your schema configuration "
 "does not support this."
 msgstr ""
 
-#: include/functions.inc:2621
+#: include/functions.inc:2624
 msgid ""
 "In order to use mixed groups the objectClass \"posixGroup\" must be "
 "AUXILIARY"
 msgstr ""
 
-#: include/functions.inc:2624
+#: include/functions.inc:2627
 msgid ""
 "Your schema is configured to support mixed groups, but this plugin is not "
 "present."
 msgstr ""
 
-#: include/functions.inc:2625
+#: include/functions.inc:2628
 msgid "The objectClass \"posixGroup\" must be STRUCTURAL"
 msgstr ""
 
-#: include/functions.inc:3075 include/functions.inc:3096
-#: include/functions.inc:3134 include/functions.inc:3146
-#: include/functions.inc:3150 include/functions.inc:3157
-#: include/functions.inc:3166
+#: include/functions.inc:3106 include/functions.inc:3127
+#: include/functions.inc:3165 include/functions.inc:3177
+#: include/functions.inc:3181 include/functions.inc:3188
+#: include/functions.inc:3197
 msgid "Cannot allocate a free ID:"
 msgstr ""
 
-#: include/functions.inc:3075
+#: include/functions.inc:3106
 msgid "unknown idAllocation method!"
 msgstr ""
 
-#: include/functions.inc:3096
+#: include/functions.inc:3127
 #, php-format
 msgid "%sPoolMin >= %sPoolMax!"
 msgstr ""
 
-#: include/functions.inc:3126
+#: include/functions.inc:3157
 msgid "Cannot create sambaUnixIdPool entry!"
 msgstr ""
 
-#: include/functions.inc:3134
+#: include/functions.inc:3165
 msgid "sambaUnixIdPool is not unique!"
 msgstr ""
 
-#: include/functions.inc:3146 include/functions.inc:3150
+#: include/functions.inc:3177 include/functions.inc:3181
 msgid "no ID available!"
 msgstr ""
 
-#: include/functions.inc:3166
+#: include/functions.inc:3197
 msgid "maximum tries exceeded!"
 msgstr ""
 
-#: include/functions.inc:3228
+#: include/functions.inc:3259
 msgid "Cannot allocate a free ID!"
 msgstr ""
 
-#: include/functions.inc:3264
+#: include/functions.inc:3295
 #, php-format
 msgid "Cannot locate file '%s' - please run '%s' to fix this"
 msgstr ""
@@ -3597,6 +3598,11 @@ msgstr ""
 msgid "Delete process has been canceled by plugin '%s': %s"
 msgstr ""
 
+#: include/simpleplugin/class_simpleTabs.inc:405
+#, php-format
+msgid "Move from \"%s\" to \"%s\" failed"
+msgstr ""
+
 #: include/class_timezone.inc:52
 #, php-format
 msgid "The timezone setting \"%s\" in your configuration is not valid."
@@ -3659,63 +3665,63 @@ msgid ""
 "fusiondirectory-setup --check-config to fix this."
 msgstr ""
 
-#: html/index.php:175
+#: html/index.php:171
 msgid "Smarty error"
 msgstr ""
 
-#: html/index.php:177
+#: html/index.php:173
 #, php-format
 msgid "Directory \"%s\" specified as compile directory is not accessible!"
 msgstr ""
 
-#: html/index.php:212
+#: html/index.php:208
 msgid "Your FusionDirectory session has expired!"
 msgstr "La vostra sessió del FusionDirectori ha caducat!"
 
-#: html/index.php:215
+#: html/index.php:211
 msgid "Your IP has changed!"
 msgstr ""
 
-#: html/index.php:218
+#: html/index.php:214
 #, php-format
 msgid "Invalid plugin parameter \"%s\"!"
 msgstr ""
 
-#: html/index.php:221
+#: html/index.php:217
 msgid "No session found!"
 msgstr ""
 
-#: html/index.php:256
+#: html/index.php:252
 msgid "LDAP schema check reported errors:"
 msgstr ""
 
-#: html/index.php:282
+#: html/index.php:278
 msgid "Please specify a valid username!"
 msgstr "Especifiqueu un nom d'usuari vàlid."
 
-#: html/index.php:285
+#: html/index.php:281
 msgid "Please specify your password!"
 msgstr "Especifiqueu la vostra contrasenya."
 
-#: html/index.php:304
+#: html/index.php:300
 msgid "Please check the username/password combination."
 msgstr ""
 
-#: html/index.php:337
+#: html/index.php:333
 msgid "Account locked. Please contact your system administrator!"
 msgstr "El compte és blocat. Contacteu el vostre administrador de sistemes."
 
-#: html/index.php:440
+#: html/index.php:436
 #, php-format
 msgid "CAS user \"%s\" could not be found in the LDAP"
 msgstr ""
 
-#: html/index.php:450
+#: html/index.php:446
 #, php-format
 msgid "CAS user \"%s\" match several users in the LDAP"
 msgstr ""
 
-#: html/index.php:485
+#: html/index.php:481
 msgid ""
 "Your browser has cookies disabled. Please enable cookies and reload this "
 "page before logging in!"
diff --git a/locale/cs_CZ/fusiondirectory.po b/locale/cs_CZ/fusiondirectory.po
index e7a9df2735407ac33ebfea536b1888e4fbc4e233..795b35d44cbf529896b4e6bb6d5ff3840a9e6ede 100644
--- a/locale/cs_CZ/fusiondirectory.po
+++ b/locale/cs_CZ/fusiondirectory.po
@@ -8,8 +8,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory-109\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2016-01-04 11:54+0100\n"
-"PO-Revision-Date: 2016-01-04 10:52+0000\n"
+"POT-Creation-Date: 2016-01-22 11:26+0100\n"
+"PO-Revision-Date: 2016-01-22 10:24+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n"
 "Language-Team: Czech (Czech Republic) (http://www.transifex.com/fusiondirectory/FusionDirectory-109/language/cs_CZ/)\n"
 "MIME-Version: 1.0\n"
@@ -96,7 +96,7 @@ msgstr "Faxové číslo"
 
 #: plugins/admin/groups/class_roleGeneric.inc:78
 #: plugins/admin/users/class_userManagement.inc:42
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:29
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:27
 #: setup/class_setupStep_Migrate.inc:871
 msgid "Users"
 msgstr "Uživatelé"
@@ -205,10 +205,10 @@ msgid "Only allow this group to connect to this list of hosts"
 msgstr "Této skupině umožnit připojení pouze na počítače z tohoto seznamu"
 
 #: plugins/admin/groups/class_group.inc:181
-#: plugins/personal/posix/class_posixAccount.inc:458 include/functions.inc:791
-#: include/functions.inc:2545 include/class_xml.inc:55
+#: plugins/personal/posix/class_posixAccount.inc:458 include/functions.inc:794
+#: include/functions.inc:2548 include/class_xml.inc:55
 #: include/simpleplugin/class_simpleTabs.inc:325 html/index.php:56
-#: html/index.php:62 html/index.php:485 html/class_passwordRecovery.inc:378
+#: html/index.php:62 html/index.php:481 html/class_passwordRecovery.inc:378
 #: setup/class_setupStep_Migrate.inc:572
 #: setup/class_setupStep_Migrate.inc:1083
 #: setup/class_setupStep_Migrate.inc:1202
@@ -251,7 +251,7 @@ msgstr "členské objekty"
 msgid "Objects member of this group"
 msgstr "Objekty spadající do této skupiny"
 
-#: plugins/admin/groups/class_ogroup.inc:317
+#: plugins/admin/groups/class_ogroup.inc:318
 msgid ""
 "Putting both workstations and terminals in the same group is not allowed"
 msgstr "Není možné umístit počítače a terminály do jedné skupiny"
@@ -874,19 +874,19 @@ msgstr "Hlášení"
 msgid "Statistics"
 msgstr "Statistiky"
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:30
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:28
 msgid "Statistics about users"
 msgstr "Statistiky o uživatelích"
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:41
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:39
 msgid "Users statistics"
 msgstr "Statistiky uživatelů"
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:46
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:44
 msgid "Groups statistics"
 msgstr "Statistiky skupin"
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:51
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:49
 #: plugins/addons/dashboard/users_accounts.tpl.c:8
 msgid "Expired accounts"
 msgstr "Účty, jejichž platnost skončila"
@@ -2107,11 +2107,11 @@ msgstr "Vybrat vše"
 #: include/class_config.inc:479 include/class_msgPool.inc:215
 #: include/class_msgPool.inc:235 include/class_msgPool.inc:265
 #: include/class_msgPool.inc:682 include/class_msgPool.inc:713
-#: include/class_msgPool.inc:740 include/functions.inc:3075
-#: include/functions.inc:3096 include/functions.inc:3126
-#: include/functions.inc:3134 include/functions.inc:3146
-#: include/functions.inc:3150 include/functions.inc:3157
-#: include/functions.inc:3166 include/functions.inc:3228
+#: include/class_msgPool.inc:740 include/functions.inc:3106
+#: include/functions.inc:3127 include/functions.inc:3157
+#: include/functions.inc:3165 include/functions.inc:3177
+#: include/functions.inc:3181 include/functions.inc:3188
+#: include/functions.inc:3197 include/functions.inc:3259
 #: include/class_msg_dialog.inc:128 include/class_xml.inc:58
 #: include/class_plugin.inc:1663 include/class_CopyPasteHandler.inc:278
 #: include/simpleplugin/class_dialogAttributes.inc:733
@@ -2122,11 +2122,12 @@ msgstr "Vybrat vše"
 #: include/simpleplugin/class_attribute.inc:1877
 #: include/simpleplugin/class_attribute.inc:1879
 #: include/simpleplugin/class_simpleTabs.inc:90
+#: include/simpleplugin/class_simpleTabs.inc:405
 #: include/password-methods/class_password-methods-sasl.inc:60
 #: include/password-methods/class_password-methods-sasl.inc:86
-#: include/password-methods/class_password-methods.inc:434
-#: include/password-methods/class_password-methods.inc:444
-#: include/class_SnapshotHandler.inc:415 html/index.php:438 html/index.php:448
+#: include/password-methods/class_password-methods.inc:437
+#: include/password-methods/class_password-methods.inc:447
+#: include/class_SnapshotHandler.inc:415 html/index.php:434 html/index.php:444
 #: setup/class_setupStep_Migrate.inc:935
 #: ihtml/themes/default/msg_dialog.tpl.c:2 setup/setup_checks.tpl.c:5
 msgid "Error"
@@ -2245,8 +2246,8 @@ msgid "XML error in fusiondirectory.conf: %s at line %d"
 msgstr "Chyba XML ve fusiondirectory.conf: %s na řádku %d"
 
 #: include/class_config.inc:162 include/class_config.inc:300
-#: include/class_config.inc:1001 include/class_config.inc:1014
-#: include/functions.inc:660 include/class_timezone.inc:51
+#: include/class_config.inc:985 include/class_config.inc:998
+#: include/functions.inc:663 include/class_timezone.inc:51
 #: include/password-methods/class_password-methods-sha.inc:71
 #: include/password-methods/class_password-methods-ssha.inc:75
 #: include/password-methods/class_password-methods-ssha.inc:91
@@ -2263,16 +2264,16 @@ msgid ""
 msgstr "Zdá se, že se pokoušíte dekódovat něco, co není zakódované : %s<br/>\\nOvěřte, zda nepoužíváte soubor fusiondirectory.secrets byť jsou vaše hesla nešifrovaná."
 
 #: include/class_config.inc:337 include/class_ldap.inc:917
-#: include/class_ldap.inc:1371 include/functions.inc:523
-#: include/functions.inc:675 include/functions.inc:722
-#: include/functions.inc:783 include/functions.inc:838
-#: include/functions.inc:2965 include/simpleplugin/class_simplePlugin.inc:545
+#: include/class_ldap.inc:1371 include/functions.inc:526
+#: include/functions.inc:678 include/functions.inc:725
+#: include/functions.inc:786 include/functions.inc:841
+#: include/functions.inc:2985 include/simpleplugin/class_simplePlugin.inc:545
 #: include/simpleplugin/class_attribute.inc:2895
-#: include/password-methods/class_password-methods.inc:196
+#: include/password-methods/class_password-methods.inc:199
 #: include/class_SnapshotHandler.inc:50 include/class_SnapshotHandler.inc:244
 #: include/class_SnapshotHandler.inc:277 include/class_SnapshotHandler.inc:292
 #: include/class_SnapshotHandler.inc:422 include/class_SnapshotHandler.inc:425
-#: html/index.php:364 html/class_passwordRecovery.inc:497
+#: html/index.php:360 html/class_passwordRecovery.inc:497
 #: setup/class_setupStep_Migrate.inc:451
 #: setup/class_setupStep_Migrate.inc:1130
 msgid "LDAP error"
@@ -2287,25 +2288,25 @@ msgstr "Nedaří se přihlášení do LDAPu. Kontaktujte prosím správce systé
 msgid "The selected mail method (class %s) is not available"
 msgstr "Zvolený způsob e-mailu (třída %s) není dostupný"
 
-#: include/class_config.inc:1002
+#: include/class_config.inc:986
 #, php-format
 msgid ""
 "The snapshot functionality is enabled, but the required variable '%s' is not"
 " set."
 msgstr "Pořizování zachycených stavů je sice zapnuté, ale není nastavena potřebná proměnná %s."
 
-#: include/class_config.inc:1015
+#: include/class_config.inc:999
 #, php-format
 msgid ""
 "The snapshot functionality is enabled, but the required compression module "
 "is missing. Please install '%s'."
 msgstr "Pořizování snímků je sice povolené, ale chybí modul pro jejich kompresi. Nainstalujte prosím '%s'."
 
-#: include/class_config.inc:1120
+#: include/class_config.inc:1104
 msgid "All categories"
 msgstr "Všechny kategorie"
 
-#: include/class_config.inc:1247
+#: include/class_config.inc:1231
 msgid "My account"
 msgstr "Můj účet"
 
@@ -2319,10 +2320,10 @@ msgid "LDAP performance is poor: last query took about %.2fs!"
 msgstr "Výkonnost LDAPu je špatná: poslední dotaz trval celých %.2fs!"
 
 #: include/class_ldap.inc:868 include/class_ldap.inc:904
-#: include/functions.inc:565 include/functions.inc:650
-#: include/functions.inc:770 include/functions.inc:1189
-#: include/functions.inc:2272 include/functions.inc:2314
-#: include/functions.inc:2343 include/class_session.inc:50
+#: include/functions.inc:568 include/functions.inc:653
+#: include/functions.inc:773 include/functions.inc:1192
+#: include/functions.inc:2275 include/functions.inc:2317
+#: include/functions.inc:2346 include/class_session.inc:50
 #: include/class_session.inc:87 include/class_session.inc:125
 #: include/class_log.inc:96 include/class_acl.inc:118
 msgid "Internal error"
@@ -2948,7 +2949,7 @@ msgid ""
 "Fatal error: cannot instantiate class '%s' - try running '%s' to fix this"
 msgstr "fatální chyba: nelze vytvořit instanci třídy '%s' – pokuste se to napravit spuštěním '%s' --update-cache (na serveru) a restartujte svůj webový prohlížeč"
 
-#: include/functions.inc:493 include/functions.inc:3263
+#: include/functions.inc:496 include/functions.inc:3294
 #: include/class_xml.inc:61 include/simpleplugin/class_simplePlugin.inc:263
 #: include/simpleplugin/class_simplePlugin.inc:268
 #: include/simpleplugin/class_simplePlugin.inc:280
@@ -2956,246 +2957,246 @@ msgstr "fatální chyba: nelze vytvořit instanci třídy '%s' – pokuste se to
 msgid "Fatal error"
 msgstr "Fatální chyba"
 
-#: include/functions.inc:494
+#: include/functions.inc:497
 #, php-format
 msgid "FATAL: Error when connecting the LDAP. Server said '%s'."
 msgstr "FATÁLNÍ: chyba při připojování do LDAPu. Server ohlásil '%s'."
 
-#: include/functions.inc:565
+#: include/functions.inc:568
 msgid ""
 "Login (uid) is not unique inside the LDAP tree. Please contact your "
 "administrator."
 msgstr "Přihlašovací údaj (uid) není v rámci LDAP stromu jedinečný! Kontaktujte svého správce systémů."
 
-#: include/functions.inc:598
+#: include/functions.inc:601
 msgid "Authentication error"
 msgstr "Chyba ověření"
 
-#: include/functions.inc:599
+#: include/functions.inc:602
 msgid ""
 "It seems your user password has expired. Please use <a "
 "href=\"recovery.php\">password recovery</a> to change it."
 msgstr "Zdá se, že platnost vašeho hesla skončila. Změňte jej pomocí funkce <a href=\"recovery.php\">obnovení hesla</a>."
 
-#: include/functions.inc:650 include/functions.inc:770
+#: include/functions.inc:653 include/functions.inc:773
 msgid "Error while adding a lock. Contact the developers!"
 msgstr "Nastala chyba při pokusu o přidání zámku. Nahlaste to prosím vývojářům!"
 
-#: include/functions.inc:660
+#: include/functions.inc:663
 #, php-format
 msgid ""
 "Cannot create locking information in LDAP tree. Please contact your "
 "administrator!"
 msgstr "Nedaří se vytvořit informaci o zamykání ve stromu LDAP. Kontaktujte svého správce systémů!"
 
-#: include/functions.inc:660
+#: include/functions.inc:663
 #, php-format
 msgid "LDAP server returned: %s"
 msgstr "LDAP server odpověděl: %s"
 
-#: include/functions.inc:791
+#: include/functions.inc:794
 msgid ""
 "Found multiple locks for object to be locked. This should not happen - "
 "cleaning up multiple references."
 msgstr "Při pokusu o vyhrazení přístupu k objektu bylo nalezeno několik již existujících zámků. To by se nemělo stávat – probíhá jejich odstraňování."
 
-#: include/functions.inc:1109
+#: include/functions.inc:1112
 #, php-format
 msgid "The size limit of %d entries is exceed!"
 msgstr "Limit velikosti položek %d je překročen!"
 
-#: include/functions.inc:1111
+#: include/functions.inc:1114
 #, php-format
 msgid ""
 "Set the new size limit to %s and show me this message if the limit still "
 "exceeds"
 msgstr "nastavit novou hodnotu limitu %s a v případě, že ani to nebude stačit, zobrazit toto hlášení znovu"
 
-#: include/functions.inc:1128
+#: include/functions.inc:1131
 msgid "Configure"
 msgstr "Nastavit"
 
-#: include/functions.inc:1133
+#: include/functions.inc:1136
 msgid "incomplete"
 msgstr "neúplné"
 
-#: include/functions.inc:1538
+#: include/functions.inc:1541
 msgid "Continue anyway"
 msgstr "Přesto pokračovat"
 
-#: include/functions.inc:1540
+#: include/functions.inc:1543
 msgid "Edit anyway"
 msgstr "Přesto upravit"
 
-#: include/functions.inc:1542
+#: include/functions.inc:1545
 #, php-format
 msgid "You're going to edit the LDAP entry/entries %s"
 msgstr "chystáte se upravit položky LDAPu %s"
 
-#: include/functions.inc:1796
+#: include/functions.inc:1799
 msgid "Entries per page"
 msgstr "Položek na stránku"
 
-#: include/functions.inc:1827 include/class_filter.inc:353
+#: include/functions.inc:1830 include/class_filter.inc:353
 msgid "Apply filter"
 msgstr "Použít filtr"
 
-#: include/functions.inc:2095
+#: include/functions.inc:2098
 #, php-format
 msgid "%sB"
 msgstr "%sB"
 
-#: include/functions.inc:2096
+#: include/functions.inc:2099
 #, php-format
 msgid "%sKiB"
 msgstr "%sKiB"
 
-#: include/functions.inc:2097
+#: include/functions.inc:2100
 #, php-format
 msgid "%sMiB"
 msgstr "%sMiB"
 
-#: include/functions.inc:2098
+#: include/functions.inc:2101
 #, php-format
 msgid "%sGiB"
 msgstr "%sGiB"
 
-#: include/functions.inc:2099
+#: include/functions.inc:2102
 #, php-format
 msgid "%sTiB"
 msgstr "%sTiB"
 
-#: include/functions.inc:2100
+#: include/functions.inc:2103
 #, php-format
 msgid "%sPiB"
 msgstr "%sPiB"
 
-#: include/functions.inc:2101
+#: include/functions.inc:2104
 #, php-format
 msgid "%sEiB"
 msgstr "%sEiB"
 
-#: include/functions.inc:2102
+#: include/functions.inc:2105
 #, php-format
 msgid "%sZiB"
 msgstr "%sZiB"
 
-#: include/functions.inc:2103
+#: include/functions.inc:2106
 #, php-format
 msgid "%sYiB"
 msgstr "%sYiB"
 
-#: include/functions.inc:2135 include/class_filter.inc:315
+#: include/functions.inc:2138 include/class_filter.inc:315
 msgid "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
 msgstr "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
 
-#: include/functions.inc:2272
+#: include/functions.inc:2275
 #, php-format
 msgid ""
 "File '%s' could not be deleted. Try fusiondirectory-setup --check-"
 "directories to fix permissions."
 msgstr "Soubor %s nebylo možné smazat. Zkuste opravit přístupová práva spuštěním příkazu fusiondirectory-setup --check-directories"
 
-#: include/functions.inc:2314
+#: include/functions.inc:2317
 msgid "Cannot write to revision file!"
 msgstr "Nelze zapsat do souboru s revizemi!"
 
-#: include/functions.inc:2343
+#: include/functions.inc:2346
 msgid "Cannot read to revision file!"
 msgstr "Nelze číst ze souboru s revizemi!"
 
-#: include/functions.inc:2545
+#: include/functions.inc:2548
 msgid "'nextIdHook' is not available. Using default base!"
 msgstr "nextIdHook není k dispozici. Bude použit výchozí základ!"
 
-#: include/functions.inc:2563
+#: include/functions.inc:2566
 msgid "LDAP warning"
 msgstr "Varování LDAP"
 
-#: include/functions.inc:2563
+#: include/functions.inc:2566
 msgid "Cannot get schema information from server. No schema check possible!"
 msgstr "Nedaří se získat informace o schématech ze serveru. Schémata proto nelze ověřit!"
 
-#: include/functions.inc:2581
+#: include/functions.inc:2584
 msgid ""
 "Used to lock currently edited entries to avoid multiple changes at the same "
 "time."
 msgstr "Používá se k uzamčení právě upravovaných položek, aby se zabránilo vícero (vzájemně si vadícím) úpravám naráz."
 
-#: include/functions.inc:2593
+#: include/functions.inc:2596
 #, php-format
 msgid "Missing required object class '%s'!"
 msgstr "Chybí nezbytně nutná třída objektů '%s'!"
 
-#: include/functions.inc:2596
+#: include/functions.inc:2599
 #, php-format
 msgid "Missing optional object class '%s'!"
 msgstr "Chybí volitelná třída objektů %s!"
 
-#: include/functions.inc:2600
+#: include/functions.inc:2603
 #, php-format
 msgid "Class(es) available"
 msgstr "Dostupné třídy"
 
-#: include/functions.inc:2620
+#: include/functions.inc:2623
 msgid ""
 "You have installed the mixed groups plugin, but your schema configuration "
 "does not support this."
 msgstr "Zásuvný modul smíšených skupin je nainstalován, ale vaše nastavení schématu ho nepodporuje."
 
-#: include/functions.inc:2621
+#: include/functions.inc:2624
 msgid ""
 "In order to use mixed groups the objectClass \"posixGroup\" must be "
 "AUXILIARY"
 msgstr "Aby bylo možné použít smíšené skupiny v objectClass posixGroup, je třeba aby byly POMOCNÉ"
 
-#: include/functions.inc:2624
+#: include/functions.inc:2627
 msgid ""
 "Your schema is configured to support mixed groups, but this plugin is not "
 "present."
 msgstr "Stávající schéma je nastaveno pro smíšené skupiny, ale není přítomen příslušný zásuvný modul."
 
-#: include/functions.inc:2625
+#: include/functions.inc:2628
 msgid "The objectClass \"posixGroup\" must be STRUCTURAL"
 msgstr "Je třeba, aby ObjectClass posixGroup bylo STRUKTURÁLNÍ"
 
-#: include/functions.inc:3075 include/functions.inc:3096
-#: include/functions.inc:3134 include/functions.inc:3146
-#: include/functions.inc:3150 include/functions.inc:3157
-#: include/functions.inc:3166
+#: include/functions.inc:3106 include/functions.inc:3127
+#: include/functions.inc:3165 include/functions.inc:3177
+#: include/functions.inc:3181 include/functions.inc:3188
+#: include/functions.inc:3197
 msgid "Cannot allocate a free ID:"
 msgstr "Není k dispozici volné ID:"
 
-#: include/functions.inc:3075
+#: include/functions.inc:3106
 msgid "unknown idAllocation method!"
 msgstr "Neznámá metoda idAllocation (přiřazování ID)!"
 
-#: include/functions.inc:3096
+#: include/functions.inc:3127
 #, php-format
 msgid "%sPoolMin >= %sPoolMax!"
 msgstr ""
 
-#: include/functions.inc:3126
+#: include/functions.inc:3157
 msgid "Cannot create sambaUnixIdPool entry!"
 msgstr "Nedaří se vytvořit položku sambaUnixIdPool!"
 
-#: include/functions.inc:3134
+#: include/functions.inc:3165
 msgid "sambaUnixIdPool is not unique!"
 msgstr "Identifikátor sambaUnixIdPool není jedinečný!"
 
-#: include/functions.inc:3146 include/functions.inc:3150
+#: include/functions.inc:3177 include/functions.inc:3181
 msgid "no ID available!"
 msgstr "Není k dispozici ID!"
 
-#: include/functions.inc:3166
+#: include/functions.inc:3197
 msgid "maximum tries exceeded!"
 msgstr "Překročen nejvyšší přijatelný počet neúspěšných pokusů!"
 
-#: include/functions.inc:3228
+#: include/functions.inc:3259
 msgid "Cannot allocate a free ID!"
 msgstr "Není k dispozici volné ID – není co přidělit!"
 
-#: include/functions.inc:3264
+#: include/functions.inc:3295
 #, php-format
 msgid "Cannot locate file '%s' - please run '%s' to fix this"
 msgstr "Nelze nalézt soubor %s – opravte to spuštěním %s (na serveru)"
@@ -3598,6 +3599,11 @@ msgstr "Nebylo nalezeno žádné určení zásuvného modulu pro inicializaci %s
 msgid "Delete process has been canceled by plugin '%s': %s"
 msgstr "Průběh mazání byl přerušen zásuvným modulem %s: %s"
 
+#: include/simpleplugin/class_simpleTabs.inc:405
+#, php-format
+msgid "Move from \"%s\" to \"%s\" failed"
+msgstr ""
+
 #: include/class_timezone.inc:52
 #, php-format
 msgid "The timezone setting \"%s\" in your configuration is not valid."
@@ -3660,63 +3666,63 @@ msgid ""
 "fusiondirectory-setup --check-config to fix this."
 msgstr "Nastavení FusionDirectory %s/%s není čitelné. Pro nápravu spusťte (na serveru) příkaz fusiondirectory-setup --check-config ."
 
-#: html/index.php:175
+#: html/index.php:171
 msgid "Smarty error"
 msgstr "Chyba ve Smarty"
 
-#: html/index.php:177
+#: html/index.php:173
 #, php-format
 msgid "Directory \"%s\" specified as compile directory is not accessible!"
 msgstr "Složka %s, zadaná jako kompilační, není přístupná!"
 
-#: html/index.php:212
+#: html/index.php:208
 msgid "Your FusionDirectory session has expired!"
 msgstr "Platnost vašeho sezení ve FusionDirectory skončila!"
 
-#: html/index.php:215
+#: html/index.php:211
 msgid "Your IP has changed!"
 msgstr "Vaše IP adresa byla změněna!"
 
-#: html/index.php:218
+#: html/index.php:214
 #, php-format
 msgid "Invalid plugin parameter \"%s\"!"
 msgstr "Neplatný parametr %s pro zásuvný modul!"
 
-#: html/index.php:221
+#: html/index.php:217
 msgid "No session found!"
 msgstr "Nebyla nalezena žádná relace!"
 
-#: html/index.php:256
+#: html/index.php:252
 msgid "LDAP schema check reported errors:"
 msgstr "Chyby nahlášené při kontrole LDAP schématu:"
 
-#: html/index.php:282
+#: html/index.php:278
 msgid "Please specify a valid username!"
 msgstr "Zadejte platné uživatelské jméno!"
 
-#: html/index.php:285
+#: html/index.php:281
 msgid "Please specify your password!"
 msgstr "Zadejte své heslo!"
 
-#: html/index.php:304
+#: html/index.php:300
 msgid "Please check the username/password combination."
 msgstr "Zkontrolujte prosím správnost kombinace zadaného uživatelského jména a hesla."
 
-#: html/index.php:337
+#: html/index.php:333
 msgid "Account locked. Please contact your system administrator!"
 msgstr "Účet je uzamčen. Kontaktujte svého správce systémů!"
 
-#: html/index.php:440
+#: html/index.php:436
 #, php-format
 msgid "CAS user \"%s\" could not be found in the LDAP"
 msgstr ""
 
-#: html/index.php:450
+#: html/index.php:446
 #, php-format
 msgid "CAS user \"%s\" match several users in the LDAP"
 msgstr ""
 
-#: html/index.php:485
+#: html/index.php:481
 msgid ""
 "Your browser has cookies disabled. Please enable cookies and reload this "
 "page before logging in!"
diff --git a/locale/de/fusiondirectory.po b/locale/de/fusiondirectory.po
index 4751cb0381dbe8c5f7821bd551e8ad81aeb4d8f5..815485589dc2c626fd548e648c74526aa1ba7e25 100644
--- a/locale/de/fusiondirectory.po
+++ b/locale/de/fusiondirectory.po
@@ -8,8 +8,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory-109\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2016-01-04 11:54+0100\n"
-"PO-Revision-Date: 2016-01-04 10:52+0000\n"
+"POT-Creation-Date: 2016-01-22 11:26+0100\n"
+"PO-Revision-Date: 2016-01-22 10:24+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n"
 "Language-Team: German (http://www.transifex.com/fusiondirectory/FusionDirectory-109/language/de/)\n"
 "MIME-Version: 1.0\n"
@@ -96,7 +96,7 @@ msgstr "Faxnummer"
 
 #: plugins/admin/groups/class_roleGeneric.inc:78
 #: plugins/admin/users/class_userManagement.inc:42
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:29
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:27
 #: setup/class_setupStep_Migrate.inc:871
 msgid "Users"
 msgstr "Benutzer"
@@ -205,10 +205,10 @@ msgid "Only allow this group to connect to this list of hosts"
 msgstr "Nur dieser Gruppe erlauben, dieser Liste von Hosts zu verbinden"
 
 #: plugins/admin/groups/class_group.inc:181
-#: plugins/personal/posix/class_posixAccount.inc:458 include/functions.inc:791
-#: include/functions.inc:2545 include/class_xml.inc:55
+#: plugins/personal/posix/class_posixAccount.inc:458 include/functions.inc:794
+#: include/functions.inc:2548 include/class_xml.inc:55
 #: include/simpleplugin/class_simpleTabs.inc:325 html/index.php:56
-#: html/index.php:62 html/index.php:485 html/class_passwordRecovery.inc:378
+#: html/index.php:62 html/index.php:481 html/class_passwordRecovery.inc:378
 #: setup/class_setupStep_Migrate.inc:572
 #: setup/class_setupStep_Migrate.inc:1083
 #: setup/class_setupStep_Migrate.inc:1202
@@ -251,7 +251,7 @@ msgstr "Zusammengefasste Objekte"
 msgid "Objects member of this group"
 msgstr "Objektmitglied dieser Gruppe"
 
-#: plugins/admin/groups/class_ogroup.inc:317
+#: plugins/admin/groups/class_ogroup.inc:318
 msgid ""
 "Putting both workstations and terminals in the same group is not allowed"
 msgstr ""
@@ -874,19 +874,19 @@ msgstr ""
 msgid "Statistics"
 msgstr "Statistiken"
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:30
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:28
 msgid "Statistics about users"
 msgstr "Statistiken über Benutzer"
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:41
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:39
 msgid "Users statistics"
 msgstr "Benutzerstatistiken"
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:46
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:44
 msgid "Groups statistics"
 msgstr "Gruppenstatistiken"
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:51
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:49
 #: plugins/addons/dashboard/users_accounts.tpl.c:8
 msgid "Expired accounts"
 msgstr "Abgelaufene Konten"
@@ -2107,11 +2107,11 @@ msgstr "Alle auswählen"
 #: include/class_config.inc:479 include/class_msgPool.inc:215
 #: include/class_msgPool.inc:235 include/class_msgPool.inc:265
 #: include/class_msgPool.inc:682 include/class_msgPool.inc:713
-#: include/class_msgPool.inc:740 include/functions.inc:3075
-#: include/functions.inc:3096 include/functions.inc:3126
-#: include/functions.inc:3134 include/functions.inc:3146
-#: include/functions.inc:3150 include/functions.inc:3157
-#: include/functions.inc:3166 include/functions.inc:3228
+#: include/class_msgPool.inc:740 include/functions.inc:3106
+#: include/functions.inc:3127 include/functions.inc:3157
+#: include/functions.inc:3165 include/functions.inc:3177
+#: include/functions.inc:3181 include/functions.inc:3188
+#: include/functions.inc:3197 include/functions.inc:3259
 #: include/class_msg_dialog.inc:128 include/class_xml.inc:58
 #: include/class_plugin.inc:1663 include/class_CopyPasteHandler.inc:278
 #: include/simpleplugin/class_dialogAttributes.inc:733
@@ -2122,11 +2122,12 @@ msgstr "Alle auswählen"
 #: include/simpleplugin/class_attribute.inc:1877
 #: include/simpleplugin/class_attribute.inc:1879
 #: include/simpleplugin/class_simpleTabs.inc:90
+#: include/simpleplugin/class_simpleTabs.inc:405
 #: include/password-methods/class_password-methods-sasl.inc:60
 #: include/password-methods/class_password-methods-sasl.inc:86
-#: include/password-methods/class_password-methods.inc:434
-#: include/password-methods/class_password-methods.inc:444
-#: include/class_SnapshotHandler.inc:415 html/index.php:438 html/index.php:448
+#: include/password-methods/class_password-methods.inc:437
+#: include/password-methods/class_password-methods.inc:447
+#: include/class_SnapshotHandler.inc:415 html/index.php:434 html/index.php:444
 #: setup/class_setupStep_Migrate.inc:935
 #: ihtml/themes/default/msg_dialog.tpl.c:2 setup/setup_checks.tpl.c:5
 msgid "Error"
@@ -2245,8 +2246,8 @@ msgid "XML error in fusiondirectory.conf: %s at line %d"
 msgstr "XML-Fehler in der Datei fusiondirectory.conf: %s in Zeile %d"
 
 #: include/class_config.inc:162 include/class_config.inc:300
-#: include/class_config.inc:1001 include/class_config.inc:1014
-#: include/functions.inc:660 include/class_timezone.inc:51
+#: include/class_config.inc:985 include/class_config.inc:998
+#: include/functions.inc:663 include/class_timezone.inc:51
 #: include/password-methods/class_password-methods-sha.inc:71
 #: include/password-methods/class_password-methods-ssha.inc:75
 #: include/password-methods/class_password-methods-ssha.inc:91
@@ -2263,16 +2264,16 @@ msgid ""
 msgstr "Es scheint als wollen Sie etwas dekodieren, was nicht enkodiert wurde : %s</br>\\nBitte prüfen Sie ob Sie nicht eine fusiondirectory.secrets Datei nutzen während Ihre Passwörter nicht verschlüsselt werden."
 
 #: include/class_config.inc:337 include/class_ldap.inc:917
-#: include/class_ldap.inc:1371 include/functions.inc:523
-#: include/functions.inc:675 include/functions.inc:722
-#: include/functions.inc:783 include/functions.inc:838
-#: include/functions.inc:2965 include/simpleplugin/class_simplePlugin.inc:545
+#: include/class_ldap.inc:1371 include/functions.inc:526
+#: include/functions.inc:678 include/functions.inc:725
+#: include/functions.inc:786 include/functions.inc:841
+#: include/functions.inc:2985 include/simpleplugin/class_simplePlugin.inc:545
 #: include/simpleplugin/class_attribute.inc:2895
-#: include/password-methods/class_password-methods.inc:196
+#: include/password-methods/class_password-methods.inc:199
 #: include/class_SnapshotHandler.inc:50 include/class_SnapshotHandler.inc:244
 #: include/class_SnapshotHandler.inc:277 include/class_SnapshotHandler.inc:292
 #: include/class_SnapshotHandler.inc:422 include/class_SnapshotHandler.inc:425
-#: html/index.php:364 html/class_passwordRecovery.inc:497
+#: html/index.php:360 html/class_passwordRecovery.inc:497
 #: setup/class_setupStep_Migrate.inc:451
 #: setup/class_setupStep_Migrate.inc:1130
 msgid "LDAP error"
@@ -2287,25 +2288,25 @@ msgstr "Kann nicht mit dem LDAP-Server verbinden. Bitte benachrichtigen Sie den
 msgid "The selected mail method (class %s) is not available"
 msgstr "Die gewählte Mailmethode (class %s) ist nicht verfügbar"
 
-#: include/class_config.inc:1002
+#: include/class_config.inc:986
 #, php-format
 msgid ""
 "The snapshot functionality is enabled, but the required variable '%s' is not"
 " set."
 msgstr "Die Snapshot-Funktionalität ist aktiviert, aber die erforderliche Variable '%s' ist nicht gesetzt."
 
-#: include/class_config.inc:1015
+#: include/class_config.inc:999
 #, php-format
 msgid ""
 "The snapshot functionality is enabled, but the required compression module "
 "is missing. Please install '%s'."
 msgstr "Die Snapshot-Funktionalität ist aktiviert, aber das erforderliche Modul ist nicht verfügbar. Bitte installieren Sie '%s'."
 
-#: include/class_config.inc:1120
+#: include/class_config.inc:1104
 msgid "All categories"
 msgstr "Alle Kategorien"
 
-#: include/class_config.inc:1247
+#: include/class_config.inc:1231
 msgid "My account"
 msgstr "Mein Konto"
 
@@ -2319,10 +2320,10 @@ msgid "LDAP performance is poor: last query took about %.2fs!"
 msgstr "Die LDAP-Leistung ist mangelhaft: Die letzte Abfrage dauerte etwa %.2f Sekunden!"
 
 #: include/class_ldap.inc:868 include/class_ldap.inc:904
-#: include/functions.inc:565 include/functions.inc:650
-#: include/functions.inc:770 include/functions.inc:1189
-#: include/functions.inc:2272 include/functions.inc:2314
-#: include/functions.inc:2343 include/class_session.inc:50
+#: include/functions.inc:568 include/functions.inc:653
+#: include/functions.inc:773 include/functions.inc:1192
+#: include/functions.inc:2275 include/functions.inc:2317
+#: include/functions.inc:2346 include/class_session.inc:50
 #: include/class_session.inc:87 include/class_session.inc:125
 #: include/class_log.inc:96 include/class_acl.inc:118
 msgid "Internal error"
@@ -2948,7 +2949,7 @@ msgid ""
 "Fatal error: cannot instantiate class '%s' - try running '%s' to fix this"
 msgstr "Schwerer Fehler: Kann Klasse '%s' nicht instanziieren - bitte führen Sie '%s' aus um das Problem zu beheben"
 
-#: include/functions.inc:493 include/functions.inc:3263
+#: include/functions.inc:496 include/functions.inc:3294
 #: include/class_xml.inc:61 include/simpleplugin/class_simplePlugin.inc:263
 #: include/simpleplugin/class_simplePlugin.inc:268
 #: include/simpleplugin/class_simplePlugin.inc:280
@@ -2956,246 +2957,246 @@ msgstr "Schwerer Fehler: Kann Klasse '%s' nicht instanziieren - bitte führen Si
 msgid "Fatal error"
 msgstr "Schwerer Fehler"
 
-#: include/functions.inc:494
+#: include/functions.inc:497
 #, php-format
 msgid "FATAL: Error when connecting the LDAP. Server said '%s'."
 msgstr "FATAL: Fehler beim Verbinden mit dem LDAP-Server. Die Meldung lautet '%s'."
 
-#: include/functions.inc:565
+#: include/functions.inc:568
 msgid ""
 "Login (uid) is not unique inside the LDAP tree. Please contact your "
 "administrator."
 msgstr ""
 
-#: include/functions.inc:598
+#: include/functions.inc:601
 msgid "Authentication error"
 msgstr "Authentifizierungsfehler"
 
-#: include/functions.inc:599
+#: include/functions.inc:602
 msgid ""
 "It seems your user password has expired. Please use <a "
 "href=\"recovery.php\">password recovery</a> to change it."
 msgstr ""
 
-#: include/functions.inc:650 include/functions.inc:770
+#: include/functions.inc:653 include/functions.inc:773
 msgid "Error while adding a lock. Contact the developers!"
 msgstr "Fehler beim Setzen einer Sperre. Bitte kontaktieren Sie die Entwickler!"
 
-#: include/functions.inc:660
+#: include/functions.inc:663
 #, php-format
 msgid ""
 "Cannot create locking information in LDAP tree. Please contact your "
 "administrator!"
 msgstr "Kann Sperrinformation für LDAP-Baum nicht erzeugen. Bitte kontaktieren Sie Ihren Administrator!"
 
-#: include/functions.inc:660
+#: include/functions.inc:663
 #, php-format
 msgid "LDAP server returned: %s"
 msgstr "Der LDAP-Server meldete: %s"
 
-#: include/functions.inc:791
+#: include/functions.inc:794
 msgid ""
 "Found multiple locks for object to be locked. This should not happen - "
 "cleaning up multiple references."
 msgstr "Mehrere Sperren für das zu sperrende Objekt gefunden. Dies sollte nicht passieren - räume mehrere Referenzen auf."
 
-#: include/functions.inc:1109
+#: include/functions.inc:1112
 #, php-format
 msgid "The size limit of %d entries is exceed!"
 msgstr "Die Größenbeschränkung von %d Einträgen ist überschritten!"
 
-#: include/functions.inc:1111
+#: include/functions.inc:1114
 #, php-format
 msgid ""
 "Set the new size limit to %s and show me this message if the limit still "
 "exceeds"
 msgstr "Verwende eine neue Größenbeschränkung von %s Einträgen und zeige diese Meldung bei Überschreitung wieder an"
 
-#: include/functions.inc:1128
+#: include/functions.inc:1131
 msgid "Configure"
 msgstr "Konfigurieren"
 
-#: include/functions.inc:1133
+#: include/functions.inc:1136
 msgid "incomplete"
 msgstr "unvollständig"
 
-#: include/functions.inc:1538
+#: include/functions.inc:1541
 msgid "Continue anyway"
 msgstr "Trotzdem Fortsetzen"
 
-#: include/functions.inc:1540
+#: include/functions.inc:1543
 msgid "Edit anyway"
 msgstr "Trotzdem bearbeiten"
 
-#: include/functions.inc:1542
+#: include/functions.inc:1545
 #, php-format
 msgid "You're going to edit the LDAP entry/entries %s"
 msgstr "Sie bearbeiten gerade den/die LDAP Eintrag/Einträge %s"
 
-#: include/functions.inc:1796
+#: include/functions.inc:1799
 msgid "Entries per page"
 msgstr "Einträge pro Seite"
 
-#: include/functions.inc:1827 include/class_filter.inc:353
+#: include/functions.inc:1830 include/class_filter.inc:353
 msgid "Apply filter"
 msgstr "Filter anwenden"
 
-#: include/functions.inc:2095
+#: include/functions.inc:2098
 #, php-format
 msgid "%sB"
 msgstr "%sB"
 
-#: include/functions.inc:2096
+#: include/functions.inc:2099
 #, php-format
 msgid "%sKiB"
 msgstr "%sKiB"
 
-#: include/functions.inc:2097
+#: include/functions.inc:2100
 #, php-format
 msgid "%sMiB"
 msgstr "%sMiB"
 
-#: include/functions.inc:2098
+#: include/functions.inc:2101
 #, php-format
 msgid "%sGiB"
 msgstr "%sGiB"
 
-#: include/functions.inc:2099
+#: include/functions.inc:2102
 #, php-format
 msgid "%sTiB"
 msgstr "%sTiB"
 
-#: include/functions.inc:2100
+#: include/functions.inc:2103
 #, php-format
 msgid "%sPiB"
 msgstr "%sPiB"
 
-#: include/functions.inc:2101
+#: include/functions.inc:2104
 #, php-format
 msgid "%sEiB"
 msgstr "%sEiB"
 
-#: include/functions.inc:2102
+#: include/functions.inc:2105
 #, php-format
 msgid "%sZiB"
 msgstr "%sZiB"
 
-#: include/functions.inc:2103
+#: include/functions.inc:2106
 #, php-format
 msgid "%sYiB"
 msgstr "%sYiB"
 
-#: include/functions.inc:2135 include/class_filter.inc:315
+#: include/functions.inc:2138 include/class_filter.inc:315
 msgid "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
 msgstr "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
 
-#: include/functions.inc:2272
+#: include/functions.inc:2275
 #, php-format
 msgid ""
 "File '%s' could not be deleted. Try fusiondirectory-setup --check-"
 "directories to fix permissions."
 msgstr "Datei '%s' konnte nicht gelöscht werden. Versuchen Sie fusiondirectory-setup --check-directories um die Rechte zu beheben."
 
-#: include/functions.inc:2314
+#: include/functions.inc:2317
 msgid "Cannot write to revision file!"
 msgstr "Kann nicht in Revisions-Datei schreiben!"
 
-#: include/functions.inc:2343
+#: include/functions.inc:2346
 msgid "Cannot read to revision file!"
 msgstr "Kann nicht von Revisionsdatei lesen!"
 
-#: include/functions.inc:2545
+#: include/functions.inc:2548
 msgid "'nextIdHook' is not available. Using default base!"
 msgstr "'nextIdHook' ist nicht verfügbar. Benutze Standardbasis!"
 
-#: include/functions.inc:2563
+#: include/functions.inc:2566
 msgid "LDAP warning"
 msgstr "LDAP-Warnung"
 
-#: include/functions.inc:2563
+#: include/functions.inc:2566
 msgid "Cannot get schema information from server. No schema check possible!"
 msgstr "Kann die Schema-Informationen nicht vom Server beziehen. Keine Schemaprüfung möglich!"
 
-#: include/functions.inc:2581
+#: include/functions.inc:2584
 msgid ""
 "Used to lock currently edited entries to avoid multiple changes at the same "
 "time."
 msgstr "Verwenden, um die momentan bearbeiteten Einträge für andere zu sperren (um gleichzeitige Änderungen zu verhindern)."
 
-#: include/functions.inc:2593
+#: include/functions.inc:2596
 #, php-format
 msgid "Missing required object class '%s'!"
 msgstr "Die benötigte Objektklasse '%s' fehlt!"
 
-#: include/functions.inc:2596
+#: include/functions.inc:2599
 #, php-format
 msgid "Missing optional object class '%s'!"
 msgstr "Die optionale Objektklasse '%s' fehlt!"
 
-#: include/functions.inc:2600
+#: include/functions.inc:2603
 #, php-format
 msgid "Class(es) available"
 msgstr "Verfügbare Klasse(n)"
 
-#: include/functions.inc:2620
+#: include/functions.inc:2623
 msgid ""
 "You have installed the mixed groups plugin, but your schema configuration "
 "does not support this."
 msgstr ""
 
-#: include/functions.inc:2621
+#: include/functions.inc:2624
 msgid ""
 "In order to use mixed groups the objectClass \"posixGroup\" must be "
 "AUXILIARY"
 msgstr ""
 
-#: include/functions.inc:2624
+#: include/functions.inc:2627
 msgid ""
 "Your schema is configured to support mixed groups, but this plugin is not "
 "present."
 msgstr ""
 
-#: include/functions.inc:2625
+#: include/functions.inc:2628
 msgid "The objectClass \"posixGroup\" must be STRUCTURAL"
 msgstr ""
 
-#: include/functions.inc:3075 include/functions.inc:3096
-#: include/functions.inc:3134 include/functions.inc:3146
-#: include/functions.inc:3150 include/functions.inc:3157
-#: include/functions.inc:3166
+#: include/functions.inc:3106 include/functions.inc:3127
+#: include/functions.inc:3165 include/functions.inc:3177
+#: include/functions.inc:3181 include/functions.inc:3188
+#: include/functions.inc:3197
 msgid "Cannot allocate a free ID:"
 msgstr "Konnte keine freie ID allozieren:"
 
-#: include/functions.inc:3075
+#: include/functions.inc:3106
 msgid "unknown idAllocation method!"
 msgstr "unbekannte idAllocation-Methode!"
 
-#: include/functions.inc:3096
+#: include/functions.inc:3127
 #, php-format
 msgid "%sPoolMin >= %sPoolMax!"
 msgstr "%sPoolMin >= %sPoolMax!"
 
-#: include/functions.inc:3126
+#: include/functions.inc:3157
 msgid "Cannot create sambaUnixIdPool entry!"
 msgstr "kann sambaUnixIdPool-Eintrag nicht anlegen!"
 
-#: include/functions.inc:3134
+#: include/functions.inc:3165
 msgid "sambaUnixIdPool is not unique!"
 msgstr "sambaUnixIdPool ist nicht eindeutig!"
 
-#: include/functions.inc:3146 include/functions.inc:3150
+#: include/functions.inc:3177 include/functions.inc:3181
 msgid "no ID available!"
 msgstr "keine ID verfügbar!"
 
-#: include/functions.inc:3166
+#: include/functions.inc:3197
 msgid "maximum tries exceeded!"
 msgstr "maximale Anzahl von Versuchen abgelaufen!"
 
-#: include/functions.inc:3228
+#: include/functions.inc:3259
 msgid "Cannot allocate a free ID!"
 msgstr "Konnte keine freie ID allozieren!"
 
-#: include/functions.inc:3264
+#: include/functions.inc:3295
 #, php-format
 msgid "Cannot locate file '%s' - please run '%s' to fix this"
 msgstr "Konnte Datei '%s' nicht finden - bitte führen Sie '%s' aus um das Problem zu beseitigen"
@@ -3598,6 +3599,11 @@ msgstr "Es wurde keine Plugin-Definition gefunden um '%s' zu Initialisieren. Bit
 msgid "Delete process has been canceled by plugin '%s': %s"
 msgstr "Der Lösch-Vorgang wurde durch das plugin '%s' beendet: %s"
 
+#: include/simpleplugin/class_simpleTabs.inc:405
+#, php-format
+msgid "Move from \"%s\" to \"%s\" failed"
+msgstr ""
+
 #: include/class_timezone.inc:52
 #, php-format
 msgid "The timezone setting \"%s\" in your configuration is not valid."
@@ -3660,63 +3666,63 @@ msgid ""
 "fusiondirectory-setup --check-config to fix this."
 msgstr "FusionDirectory Konfiguration %s/%s ist nicht lesbar. Bitte starten Sie fusiondirectory-setup --check-config um dies zu beheben."
 
-#: html/index.php:175
+#: html/index.php:171
 msgid "Smarty error"
 msgstr "Smarty-Fehler"
 
-#: html/index.php:177
+#: html/index.php:173
 #, php-format
 msgid "Directory \"%s\" specified as compile directory is not accessible!"
 msgstr ""
 
-#: html/index.php:212
+#: html/index.php:208
 msgid "Your FusionDirectory session has expired!"
 msgstr "Ihre FusionDirectory Sitzung ist abgelaufen!"
 
-#: html/index.php:215
+#: html/index.php:211
 msgid "Your IP has changed!"
 msgstr "Ihre IP hat sich geändert!"
 
-#: html/index.php:218
+#: html/index.php:214
 #, php-format
 msgid "Invalid plugin parameter \"%s\"!"
 msgstr ""
 
-#: html/index.php:221
+#: html/index.php:217
 msgid "No session found!"
 msgstr "Keine Sitzung gefunden!"
 
-#: html/index.php:256
+#: html/index.php:252
 msgid "LDAP schema check reported errors:"
 msgstr ""
 
-#: html/index.php:282
+#: html/index.php:278
 msgid "Please specify a valid username!"
 msgstr "Bitte geben Sie einen gültigen Benutzernamen ein!"
 
-#: html/index.php:285
+#: html/index.php:281
 msgid "Please specify your password!"
 msgstr "Bitte geben Sie Ihr Passwort ein!"
 
-#: html/index.php:304
+#: html/index.php:300
 msgid "Please check the username/password combination."
 msgstr "Bitte überprüfen Sie die Kombination von Benutzernamen und Passwort."
 
-#: html/index.php:337
+#: html/index.php:333
 msgid "Account locked. Please contact your system administrator!"
 msgstr "Das Konto ist gesperrt. Bitte benachrichtigen Sie den Administrator!"
 
-#: html/index.php:440
+#: html/index.php:436
 #, php-format
 msgid "CAS user \"%s\" could not be found in the LDAP"
 msgstr ""
 
-#: html/index.php:450
+#: html/index.php:446
 #, php-format
 msgid "CAS user \"%s\" match several users in the LDAP"
 msgstr ""
 
-#: html/index.php:485
+#: html/index.php:481
 msgid ""
 "Your browser has cookies disabled. Please enable cookies and reload this "
 "page before logging in!"
diff --git a/locale/el_GR/fusiondirectory.po b/locale/el_GR/fusiondirectory.po
index ba0316ff12a6469923194caa7de7195096918865..4318facc84cdb978a23cdfd4fd3196a36f9bc634 100644
--- a/locale/el_GR/fusiondirectory.po
+++ b/locale/el_GR/fusiondirectory.po
@@ -13,8 +13,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory-109\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2016-01-04 11:54+0100\n"
-"PO-Revision-Date: 2016-01-04 10:52+0000\n"
+"POT-Creation-Date: 2016-01-22 11:26+0100\n"
+"PO-Revision-Date: 2016-01-22 10:24+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n"
 "Language-Team: Greek (Greece) (http://www.transifex.com/fusiondirectory/FusionDirectory-109/language/el_GR/)\n"
 "MIME-Version: 1.0\n"
@@ -101,7 +101,7 @@ msgstr "Αριθμός φαξ"
 
 #: plugins/admin/groups/class_roleGeneric.inc:78
 #: plugins/admin/users/class_userManagement.inc:42
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:29
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:27
 #: setup/class_setupStep_Migrate.inc:871
 msgid "Users"
 msgstr "Χρήστες"
@@ -210,10 +210,10 @@ msgid "Only allow this group to connect to this list of hosts"
 msgstr "Επιτρέπεται σ'αυτή την ομάδα να συνδέεται στην ακόλουθη λίστα διακομιστών"
 
 #: plugins/admin/groups/class_group.inc:181
-#: plugins/personal/posix/class_posixAccount.inc:458 include/functions.inc:791
-#: include/functions.inc:2545 include/class_xml.inc:55
+#: plugins/personal/posix/class_posixAccount.inc:458 include/functions.inc:794
+#: include/functions.inc:2548 include/class_xml.inc:55
 #: include/simpleplugin/class_simpleTabs.inc:325 html/index.php:56
-#: html/index.php:62 html/index.php:485 html/class_passwordRecovery.inc:378
+#: html/index.php:62 html/index.php:481 html/class_passwordRecovery.inc:378
 #: setup/class_setupStep_Migrate.inc:572
 #: setup/class_setupStep_Migrate.inc:1083
 #: setup/class_setupStep_Migrate.inc:1202
@@ -256,7 +256,7 @@ msgstr "Αντικείμενα μέλους"
 msgid "Objects member of this group"
 msgstr "Αντικείμενα μέλους για αυτή την ομάδα"
 
-#: plugins/admin/groups/class_ogroup.inc:317
+#: plugins/admin/groups/class_ogroup.inc:318
 msgid ""
 "Putting both workstations and terminals in the same group is not allowed"
 msgstr "Τοποθετηση σταθμών εργασίας και τερματικών στην ίδια ομάδα δεν επιτρέπεται"
@@ -879,19 +879,19 @@ msgstr "Αναφορά"
 msgid "Statistics"
 msgstr "Στατιστικά"
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:30
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:28
 msgid "Statistics about users"
 msgstr "Στατιστικά για τους χρήστες"
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:41
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:39
 msgid "Users statistics"
 msgstr "Στατιστικά χρηστών"
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:46
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:44
 msgid "Groups statistics"
 msgstr "Στατιστικά ομάδων"
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:51
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:49
 #: plugins/addons/dashboard/users_accounts.tpl.c:8
 msgid "Expired accounts"
 msgstr "Λογαριασμοί που έχουν λήξει"
@@ -2112,11 +2112,11 @@ msgstr "Επιλογή όλων"
 #: include/class_config.inc:479 include/class_msgPool.inc:215
 #: include/class_msgPool.inc:235 include/class_msgPool.inc:265
 #: include/class_msgPool.inc:682 include/class_msgPool.inc:713
-#: include/class_msgPool.inc:740 include/functions.inc:3075
-#: include/functions.inc:3096 include/functions.inc:3126
-#: include/functions.inc:3134 include/functions.inc:3146
-#: include/functions.inc:3150 include/functions.inc:3157
-#: include/functions.inc:3166 include/functions.inc:3228
+#: include/class_msgPool.inc:740 include/functions.inc:3106
+#: include/functions.inc:3127 include/functions.inc:3157
+#: include/functions.inc:3165 include/functions.inc:3177
+#: include/functions.inc:3181 include/functions.inc:3188
+#: include/functions.inc:3197 include/functions.inc:3259
 #: include/class_msg_dialog.inc:128 include/class_xml.inc:58
 #: include/class_plugin.inc:1663 include/class_CopyPasteHandler.inc:278
 #: include/simpleplugin/class_dialogAttributes.inc:733
@@ -2127,11 +2127,12 @@ msgstr "Επιλογή όλων"
 #: include/simpleplugin/class_attribute.inc:1877
 #: include/simpleplugin/class_attribute.inc:1879
 #: include/simpleplugin/class_simpleTabs.inc:90
+#: include/simpleplugin/class_simpleTabs.inc:405
 #: include/password-methods/class_password-methods-sasl.inc:60
 #: include/password-methods/class_password-methods-sasl.inc:86
-#: include/password-methods/class_password-methods.inc:434
-#: include/password-methods/class_password-methods.inc:444
-#: include/class_SnapshotHandler.inc:415 html/index.php:438 html/index.php:448
+#: include/password-methods/class_password-methods.inc:437
+#: include/password-methods/class_password-methods.inc:447
+#: include/class_SnapshotHandler.inc:415 html/index.php:434 html/index.php:444
 #: setup/class_setupStep_Migrate.inc:935
 #: ihtml/themes/default/msg_dialog.tpl.c:2 setup/setup_checks.tpl.c:5
 msgid "Error"
@@ -2250,8 +2251,8 @@ msgid "XML error in fusiondirectory.conf: %s at line %d"
 msgstr ""
 
 #: include/class_config.inc:162 include/class_config.inc:300
-#: include/class_config.inc:1001 include/class_config.inc:1014
-#: include/functions.inc:660 include/class_timezone.inc:51
+#: include/class_config.inc:985 include/class_config.inc:998
+#: include/functions.inc:663 include/class_timezone.inc:51
 #: include/password-methods/class_password-methods-sha.inc:71
 #: include/password-methods/class_password-methods-ssha.inc:75
 #: include/password-methods/class_password-methods-ssha.inc:91
@@ -2268,16 +2269,16 @@ msgid ""
 msgstr ""
 
 #: include/class_config.inc:337 include/class_ldap.inc:917
-#: include/class_ldap.inc:1371 include/functions.inc:523
-#: include/functions.inc:675 include/functions.inc:722
-#: include/functions.inc:783 include/functions.inc:838
-#: include/functions.inc:2965 include/simpleplugin/class_simplePlugin.inc:545
+#: include/class_ldap.inc:1371 include/functions.inc:526
+#: include/functions.inc:678 include/functions.inc:725
+#: include/functions.inc:786 include/functions.inc:841
+#: include/functions.inc:2985 include/simpleplugin/class_simplePlugin.inc:545
 #: include/simpleplugin/class_attribute.inc:2895
-#: include/password-methods/class_password-methods.inc:196
+#: include/password-methods/class_password-methods.inc:199
 #: include/class_SnapshotHandler.inc:50 include/class_SnapshotHandler.inc:244
 #: include/class_SnapshotHandler.inc:277 include/class_SnapshotHandler.inc:292
 #: include/class_SnapshotHandler.inc:422 include/class_SnapshotHandler.inc:425
-#: html/index.php:364 html/class_passwordRecovery.inc:497
+#: html/index.php:360 html/class_passwordRecovery.inc:497
 #: setup/class_setupStep_Migrate.inc:451
 #: setup/class_setupStep_Migrate.inc:1130
 msgid "LDAP error"
@@ -2292,25 +2293,25 @@ msgstr "Αδυναμία bind σε LDAP. Επικοινωνήστε με τον
 msgid "The selected mail method (class %s) is not available"
 msgstr ""
 
-#: include/class_config.inc:1002
+#: include/class_config.inc:986
 #, php-format
 msgid ""
 "The snapshot functionality is enabled, but the required variable '%s' is not"
 " set."
 msgstr ""
 
-#: include/class_config.inc:1015
+#: include/class_config.inc:999
 #, php-format
 msgid ""
 "The snapshot functionality is enabled, but the required compression module "
 "is missing. Please install '%s'."
 msgstr ""
 
-#: include/class_config.inc:1120
+#: include/class_config.inc:1104
 msgid "All categories"
 msgstr "Όλες οι κατηγορίες"
 
-#: include/class_config.inc:1247
+#: include/class_config.inc:1231
 msgid "My account"
 msgstr "Ο λογαριασμός μου"
 
@@ -2324,10 +2325,10 @@ msgid "LDAP performance is poor: last query took about %.2fs!"
 msgstr ""
 
 #: include/class_ldap.inc:868 include/class_ldap.inc:904
-#: include/functions.inc:565 include/functions.inc:650
-#: include/functions.inc:770 include/functions.inc:1189
-#: include/functions.inc:2272 include/functions.inc:2314
-#: include/functions.inc:2343 include/class_session.inc:50
+#: include/functions.inc:568 include/functions.inc:653
+#: include/functions.inc:773 include/functions.inc:1192
+#: include/functions.inc:2275 include/functions.inc:2317
+#: include/functions.inc:2346 include/class_session.inc:50
 #: include/class_session.inc:87 include/class_session.inc:125
 #: include/class_log.inc:96 include/class_acl.inc:118
 msgid "Internal error"
@@ -2953,7 +2954,7 @@ msgid ""
 "Fatal error: cannot instantiate class '%s' - try running '%s' to fix this"
 msgstr ""
 
-#: include/functions.inc:493 include/functions.inc:3263
+#: include/functions.inc:496 include/functions.inc:3294
 #: include/class_xml.inc:61 include/simpleplugin/class_simplePlugin.inc:263
 #: include/simpleplugin/class_simplePlugin.inc:268
 #: include/simpleplugin/class_simplePlugin.inc:280
@@ -2961,246 +2962,246 @@ msgstr ""
 msgid "Fatal error"
 msgstr "Μοιραίο σφάλμα"
 
-#: include/functions.inc:494
+#: include/functions.inc:497
 #, php-format
 msgid "FATAL: Error when connecting the LDAP. Server said '%s'."
 msgstr "ΣΦΑΛΜΑ: Σφάλμα σύνδεσης στον διακομιστή LDAP. Ο διακομιστής αποκρίθηκε '%s'."
 
-#: include/functions.inc:565
+#: include/functions.inc:568
 msgid ""
 "Login (uid) is not unique inside the LDAP tree. Please contact your "
 "administrator."
 msgstr "Η σύνδεση (uid) δεν είναι μοναδική μέσα στο δέντρο LDAP. Παρακαλούμε επικοινωνήστε με τον διαχειριστή του συστήματος σας."
 
-#: include/functions.inc:598
+#: include/functions.inc:601
 msgid "Authentication error"
 msgstr "Σφάλμα πιστοποίησης"
 
-#: include/functions.inc:599
+#: include/functions.inc:602
 msgid ""
 "It seems your user password has expired. Please use <a "
 "href=\"recovery.php\">password recovery</a> to change it."
 msgstr ""
 
-#: include/functions.inc:650 include/functions.inc:770
+#: include/functions.inc:653 include/functions.inc:773
 msgid "Error while adding a lock. Contact the developers!"
 msgstr "Σφάλμα κατά την προσθήκη κλειδώματος. Επικοινωνήστε με τους προγραμματιστές!"
 
-#: include/functions.inc:660
+#: include/functions.inc:663
 #, php-format
 msgid ""
 "Cannot create locking information in LDAP tree. Please contact your "
 "administrator!"
 msgstr "Αποτυχία δημιουργίας κλειδώματος στο δέντρο LDAP. Παρακαλούμε επικοινωνήστε με τον διαχειριστή του συστήματος σας."
 
-#: include/functions.inc:660
+#: include/functions.inc:663
 #, php-format
 msgid "LDAP server returned: %s"
 msgstr "Ο διακομιστής LDAP επίστρεψε: %s"
 
-#: include/functions.inc:791
+#: include/functions.inc:794
 msgid ""
 "Found multiple locks for object to be locked. This should not happen - "
 "cleaning up multiple references."
 msgstr ""
 
-#: include/functions.inc:1109
+#: include/functions.inc:1112
 #, php-format
 msgid "The size limit of %d entries is exceed!"
 msgstr "Έχει ξεπεραστεί το όριο %d καταχωρίσεων!"
 
-#: include/functions.inc:1111
+#: include/functions.inc:1114
 #, php-format
 msgid ""
 "Set the new size limit to %s and show me this message if the limit still "
 "exceeds"
 msgstr ""
 
-#: include/functions.inc:1128
+#: include/functions.inc:1131
 msgid "Configure"
 msgstr "Ρύθμιση"
 
-#: include/functions.inc:1133
+#: include/functions.inc:1136
 msgid "incomplete"
 msgstr "ελλιπής"
 
-#: include/functions.inc:1538
+#: include/functions.inc:1541
 msgid "Continue anyway"
 msgstr "Συνέχεια οπωσδήποτε"
 
-#: include/functions.inc:1540
+#: include/functions.inc:1543
 msgid "Edit anyway"
 msgstr "Επεξεργασία οπωσδήποτε"
 
-#: include/functions.inc:1542
+#: include/functions.inc:1545
 #, php-format
 msgid "You're going to edit the LDAP entry/entries %s"
 msgstr ""
 
-#: include/functions.inc:1796
+#: include/functions.inc:1799
 msgid "Entries per page"
 msgstr "Καταχωρήσεις ανά σελίδα"
 
-#: include/functions.inc:1827 include/class_filter.inc:353
+#: include/functions.inc:1830 include/class_filter.inc:353
 msgid "Apply filter"
 msgstr "Εφαρμογή φίλτρου"
 
-#: include/functions.inc:2095
+#: include/functions.inc:2098
 #, php-format
 msgid "%sB"
 msgstr "%sB"
 
-#: include/functions.inc:2096
+#: include/functions.inc:2099
 #, php-format
 msgid "%sKiB"
 msgstr ""
 
-#: include/functions.inc:2097
+#: include/functions.inc:2100
 #, php-format
 msgid "%sMiB"
 msgstr ""
 
-#: include/functions.inc:2098
+#: include/functions.inc:2101
 #, php-format
 msgid "%sGiB"
 msgstr ""
 
-#: include/functions.inc:2099
+#: include/functions.inc:2102
 #, php-format
 msgid "%sTiB"
 msgstr ""
 
-#: include/functions.inc:2100
+#: include/functions.inc:2103
 #, php-format
 msgid "%sPiB"
 msgstr ""
 
-#: include/functions.inc:2101
+#: include/functions.inc:2104
 #, php-format
 msgid "%sEiB"
 msgstr ""
 
-#: include/functions.inc:2102
+#: include/functions.inc:2105
 #, php-format
 msgid "%sZiB"
 msgstr ""
 
-#: include/functions.inc:2103
+#: include/functions.inc:2106
 #, php-format
 msgid "%sYiB"
 msgstr ""
 
-#: include/functions.inc:2135 include/class_filter.inc:315
+#: include/functions.inc:2138 include/class_filter.inc:315
 msgid "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
 msgstr "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
 
-#: include/functions.inc:2272
+#: include/functions.inc:2275
 #, php-format
 msgid ""
 "File '%s' could not be deleted. Try fusiondirectory-setup --check-"
 "directories to fix permissions."
 msgstr ""
 
-#: include/functions.inc:2314
+#: include/functions.inc:2317
 msgid "Cannot write to revision file!"
 msgstr "Αδύνατη η εγγραφή σε αρχείο αναθεώρησης!"
 
-#: include/functions.inc:2343
+#: include/functions.inc:2346
 msgid "Cannot read to revision file!"
 msgstr "Αδύνατη η ανάγνωση σε αρχείο αναθεώρησης!"
 
-#: include/functions.inc:2545
+#: include/functions.inc:2548
 msgid "'nextIdHook' is not available. Using default base!"
 msgstr ""
 
-#: include/functions.inc:2563
+#: include/functions.inc:2566
 msgid "LDAP warning"
 msgstr "Προειδοποίηση LDAP "
 
-#: include/functions.inc:2563
+#: include/functions.inc:2566
 msgid "Cannot get schema information from server. No schema check possible!"
 msgstr "Αδυναμία λήψης πληροφοριών σχήματος για τον εξυπηρετητή. Δεν υπάρχει η δυνατότητα ελέγχου σχήματος!"
 
-#: include/functions.inc:2581
+#: include/functions.inc:2584
 msgid ""
 "Used to lock currently edited entries to avoid multiple changes at the same "
 "time."
 msgstr ""
 
-#: include/functions.inc:2593
+#: include/functions.inc:2596
 #, php-format
 msgid "Missing required object class '%s'!"
 msgstr "Λείπει η απαιτούμενη κλάση αντικειμένου '%s'!"
 
-#: include/functions.inc:2596
+#: include/functions.inc:2599
 #, php-format
 msgid "Missing optional object class '%s'!"
 msgstr ""
 
-#: include/functions.inc:2600
+#: include/functions.inc:2603
 #, php-format
 msgid "Class(es) available"
 msgstr "Δαθέσιμες κλάσεις"
 
-#: include/functions.inc:2620
+#: include/functions.inc:2623
 msgid ""
 "You have installed the mixed groups plugin, but your schema configuration "
 "does not support this."
 msgstr ""
 
-#: include/functions.inc:2621
+#: include/functions.inc:2624
 msgid ""
 "In order to use mixed groups the objectClass \"posixGroup\" must be "
 "AUXILIARY"
 msgstr ""
 
-#: include/functions.inc:2624
+#: include/functions.inc:2627
 msgid ""
 "Your schema is configured to support mixed groups, but this plugin is not "
 "present."
 msgstr ""
 
-#: include/functions.inc:2625
+#: include/functions.inc:2628
 msgid "The objectClass \"posixGroup\" must be STRUCTURAL"
 msgstr ""
 
-#: include/functions.inc:3075 include/functions.inc:3096
-#: include/functions.inc:3134 include/functions.inc:3146
-#: include/functions.inc:3150 include/functions.inc:3157
-#: include/functions.inc:3166
+#: include/functions.inc:3106 include/functions.inc:3127
+#: include/functions.inc:3165 include/functions.inc:3177
+#: include/functions.inc:3181 include/functions.inc:3188
+#: include/functions.inc:3197
 msgid "Cannot allocate a free ID:"
 msgstr "Δεν είναι δυνατό να ανατεθεί μια free ID:"
 
-#: include/functions.inc:3075
+#: include/functions.inc:3106
 msgid "unknown idAllocation method!"
 msgstr "αγνωστη μέθοδος idAllocation"
 
-#: include/functions.inc:3096
+#: include/functions.inc:3127
 #, php-format
 msgid "%sPoolMin >= %sPoolMax!"
 msgstr ""
 
-#: include/functions.inc:3126
+#: include/functions.inc:3157
 msgid "Cannot create sambaUnixIdPool entry!"
 msgstr "Αδυναμία δημιουργίας καταχώρισης sambaUnixIdPool!"
 
-#: include/functions.inc:3134
+#: include/functions.inc:3165
 msgid "sambaUnixIdPool is not unique!"
 msgstr "sambaUnixIdPool  δεν είναι μοναδική!"
 
-#: include/functions.inc:3146 include/functions.inc:3150
+#: include/functions.inc:3177 include/functions.inc:3181
 msgid "no ID available!"
 msgstr "Μη διαθέσιμη ID!"
 
-#: include/functions.inc:3166
+#: include/functions.inc:3197
 msgid "maximum tries exceeded!"
 msgstr "Υπέρβαση μεγίστου ορίου προσπαθειών!"
 
-#: include/functions.inc:3228
+#: include/functions.inc:3259
 msgid "Cannot allocate a free ID!"
 msgstr "Δεν είναι δυνατή η διάθεση μιας  free ID!"
 
-#: include/functions.inc:3264
+#: include/functions.inc:3295
 #, php-format
 msgid "Cannot locate file '%s' - please run '%s' to fix this"
 msgstr "Αδύνατος ο εντοπισμός του αρχείου  '%s' - Παρακαλώ εκτελέστε την εντολή '%s' για να το διορθώσετε"
@@ -3603,6 +3604,11 @@ msgstr ""
 msgid "Delete process has been canceled by plugin '%s': %s"
 msgstr ""
 
+#: include/simpleplugin/class_simpleTabs.inc:405
+#, php-format
+msgid "Move from \"%s\" to \"%s\" failed"
+msgstr ""
+
 #: include/class_timezone.inc:52
 #, php-format
 msgid "The timezone setting \"%s\" in your configuration is not valid."
@@ -3665,63 +3671,63 @@ msgid ""
 "fusiondirectory-setup --check-config to fix this."
 msgstr ""
 
-#: html/index.php:175
+#: html/index.php:171
 msgid "Smarty error"
 msgstr ""
 
-#: html/index.php:177
+#: html/index.php:173
 #, php-format
 msgid "Directory \"%s\" specified as compile directory is not accessible!"
 msgstr ""
 
-#: html/index.php:212
+#: html/index.php:208
 msgid "Your FusionDirectory session has expired!"
 msgstr ""
 
-#: html/index.php:215
+#: html/index.php:211
 msgid "Your IP has changed!"
 msgstr ""
 
-#: html/index.php:218
+#: html/index.php:214
 #, php-format
 msgid "Invalid plugin parameter \"%s\"!"
 msgstr ""
 
-#: html/index.php:221
+#: html/index.php:217
 msgid "No session found!"
 msgstr ""
 
-#: html/index.php:256
+#: html/index.php:252
 msgid "LDAP schema check reported errors:"
 msgstr ""
 
-#: html/index.php:282
+#: html/index.php:278
 msgid "Please specify a valid username!"
 msgstr "Παρακαλώ καθορίστε ένα έγκυρο όνομα χρήστη!"
 
-#: html/index.php:285
+#: html/index.php:281
 msgid "Please specify your password!"
 msgstr ""
 
-#: html/index.php:304
+#: html/index.php:300
 msgid "Please check the username/password combination."
 msgstr "Παρακαλώ ελέγξτε το συνδυασμό όνομα χρήστη/κωδικός πρόσβασης."
 
-#: html/index.php:337
+#: html/index.php:333
 msgid "Account locked. Please contact your system administrator!"
 msgstr ""
 
-#: html/index.php:440
+#: html/index.php:436
 #, php-format
 msgid "CAS user \"%s\" could not be found in the LDAP"
 msgstr ""
 
-#: html/index.php:450
+#: html/index.php:446
 #, php-format
 msgid "CAS user \"%s\" match several users in the LDAP"
 msgstr ""
 
-#: html/index.php:485
+#: html/index.php:481
 msgid ""
 "Your browser has cookies disabled. Please enable cookies and reload this "
 "page before logging in!"
diff --git a/locale/en/fusiondirectory.po b/locale/en/fusiondirectory.po
index 2fef5b9cc97d0d334d3c1c08c4ae693117b702e6..d12aa3615d0bdd9818a16a44ef7781ce51507143 100644
--- a/locale/en/fusiondirectory.po
+++ b/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: 2016-01-02 22:28+0100\n"
+"POT-Creation-Date: 2016-01-22 11:26+0100\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FusionDirectory project <contact@fusiondirectory.org>\n"
 "Language-Team: English\n"
@@ -31,8 +31,8 @@ msgstr ""
 
 #: plugins/admin/groups/class_roleGeneric.inc:30
 #: plugins/admin/groups/class_roleGeneric.inc:34
-#: plugins/admin/groups/class_groupManagement.inc:70
-#: plugins/admin/aclrole/class_aclRole.inc:107
+#: plugins/admin/groups/class_groupManagement.inc:71
+#: plugins/admin/aclrole/class_aclRole.inc:78
 #: plugins/admin/acl/class_aclAssignment.inc:49
 msgid "Role"
 msgstr ""
@@ -54,11 +54,10 @@ msgstr ""
 #: plugins/admin/groups/class_ogroup.inc:187
 #: plugins/admin/groups/group-list.xml:33
 #: plugins/admin/departments/class_department.inc:158
-#: plugins/admin/aclrole/class_aclRole.inc:130
+#: plugins/admin/aclrole/class_aclRole.inc:101
 #: include/simpleplugin/simple-select-list.xml:32
 #: include/simpleplugin/simple-list.xml:32
 #: plugins/admin/users/user-filter.tpl.c:20
-#: ihtml/themes/default/simple-filter.tpl.c:5
 #: include/select/groupSelect/group-filter.tpl.c:14
 #: setup/setup_migrate_adminAccount.tpl.c:8
 msgid "Name"
@@ -76,7 +75,7 @@ msgstr ""
 #: plugins/admin/groups/group-list.xml:41
 #: plugins/admin/departments/class_department.inc:73
 #: plugins/admin/departments/dep-list.xml:29
-#: plugins/admin/aclrole/class_aclRole.inc:134
+#: plugins/admin/aclrole/class_aclRole.inc:105
 #: plugins/personal/generic/class_user.inc:289
 #: include/simpleplugin/simple-select-list.xml:40
 #: include/simpleplugin/simple-list.xml:40
@@ -97,7 +96,7 @@ msgstr ""
 
 #: plugins/admin/groups/class_roleGeneric.inc:78
 #: plugins/admin/users/class_userManagement.inc:42
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:29
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:27
 #: setup/class_setupStep_Migrate.inc:871
 msgid "Users"
 msgstr ""
@@ -129,7 +128,7 @@ msgstr ""
 #: plugins/admin/groups/group-list.xml:49
 #: plugins/admin/departments/class_department.inc:64
 #: plugins/admin/users/user-list.xml:57
-#: plugins/admin/aclrole/class_aclRole.inc:126
+#: plugins/admin/aclrole/class_aclRole.inc:97
 #: plugins/admin/acl/class_aclAssignment.inc:40
 msgid "Properties"
 msgstr ""
@@ -206,10 +205,10 @@ msgid "Only allow this group to connect to this list of hosts"
 msgstr ""
 
 #: plugins/admin/groups/class_group.inc:181
-#: plugins/personal/posix/class_posixAccount.inc:458 include/functions.inc:791
-#: include/functions.inc:2545 include/class_xml.inc:55
+#: plugins/personal/posix/class_posixAccount.inc:458 include/functions.inc:794
+#: include/functions.inc:2548 include/class_xml.inc:55
 #: include/simpleplugin/class_simpleTabs.inc:325 html/index.php:56
-#: html/index.php:62 html/index.php:485 html/class_passwordRecovery.inc:378
+#: html/index.php:62 html/index.php:481 html/class_passwordRecovery.inc:378
 #: setup/class_setupStep_Migrate.inc:572
 #: setup/class_setupStep_Migrate.inc:1083
 #: setup/class_setupStep_Migrate.inc:1202
@@ -252,7 +251,7 @@ msgstr ""
 msgid "Objects member of this group"
 msgstr ""
 
-#: plugins/admin/groups/class_ogroup.inc:317
+#: plugins/admin/groups/class_ogroup.inc:318
 msgid ""
 "Putting both workstations and terminals in the same group is not allowed"
 msgstr ""
@@ -280,7 +279,7 @@ msgstr ""
 #: plugins/admin/groups/group-list.xml:119
 #: plugins/admin/departments/dep-list.xml:79
 #: plugins/admin/users/user-list.xml:105
-#: plugins/admin/aclrole/class_aclRole.inc:315
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:192
 #: include/simpleplugin/class_dialogAttributes.inc:626
 #: include/simpleplugin/class_dialogAttributes.inc:627
 #: include/simpleplugin/class_attribute.inc:2661
@@ -311,70 +310,74 @@ msgstr ""
 msgid "Manage groups and roles"
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:70
+#: plugins/admin/groups/class_groupManagement.inc:33
+msgid "Allows you to manage object groups, POSIX groups and roles"
+msgstr ""
+
+#: plugins/admin/groups/class_groupManagement.inc:71
 msgid "Edit role properties"
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:86
+#: plugins/admin/groups/class_groupManagement.inc:87
 msgid "Posix"
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:86
+#: plugins/admin/groups/class_groupManagement.inc:87
 msgid "Edit posix properties"
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:129
+#: plugins/admin/groups/class_groupManagement.inc:130
 msgid "Show user groups"
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:130
+#: plugins/admin/groups/class_groupManagement.inc:131
 #: include/select/groupSelect/group-filter.tpl.c:5
 msgid "Show primary groups"
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:131
+#: plugins/admin/groups/class_groupManagement.inc:132
 msgid "Show organizational roles"
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:132
+#: plugins/admin/groups/class_groupManagement.inc:133
 msgid "Show application groups"
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:133
+#: plugins/admin/groups/class_groupManagement.inc:134
 msgid "Show department groups"
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:136
+#: plugins/admin/groups/class_groupManagement.inc:137
 #: include/select/groupSelect/group-filter.tpl.c:11
 msgid "Show mail groups"
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:139
+#: plugins/admin/groups/class_groupManagement.inc:140
 #: include/select/groupSelect/group-filter.tpl.c:8
 msgid "Show samba groups"
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:145
+#: plugins/admin/groups/class_groupManagement.inc:146
 msgid "Show server groups"
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:146
+#: plugins/admin/groups/class_groupManagement.inc:147
 msgid "Show workstation groups"
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:147
+#: plugins/admin/groups/class_groupManagement.inc:148
 msgid "Show windows groups"
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:148
+#: plugins/admin/groups/class_groupManagement.inc:149
 msgid "Show terminal groups"
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:149
+#: plugins/admin/groups/class_groupManagement.inc:150
 msgid "Show printer groups"
 msgstr ""
 
-#: plugins/admin/groups/class_groupManagement.inc:150
+#: plugins/admin/groups/class_groupManagement.inc:151
 msgid "Show phone groups"
 msgstr ""
 
@@ -482,7 +485,13 @@ msgstr ""
 msgid "Manage departments"
 msgstr ""
 
-#: plugins/admin/departments/class_departmentManagement.inc:37
+#: plugins/admin/departments/class_departmentManagement.inc:36
+msgid ""
+"Manage departments, countries, domain components, domains, localities and "
+"organization nodes,"
+msgstr ""
+
+#: plugins/admin/departments/class_departmentManagement.inc:38
 msgid "Users and groups"
 msgstr ""
 
@@ -600,7 +609,11 @@ msgstr ""
 msgid "Manage users"
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:139
+#: plugins/admin/users/class_userManagement.inc:44
+msgid "Manage user accounts and their properties"
+msgstr ""
+
+#: plugins/admin/users/class_userManagement.inc:140
 #: include/class_management.inc:341 include/class_management.inc:488
 #: include/class_management.inc:507 include/class_management.inc:524
 #: include/class_management.inc:571 include/class_CopyPasteHandler.inc:248
@@ -610,145 +623,153 @@ msgstr ""
 msgid "Permission"
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:177
+#: plugins/admin/users/class_userManagement.inc:178
 msgid "Account locking"
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:178
+#: plugins/admin/users/class_userManagement.inc:179
 #, php-format
 msgid ""
 "Password method \"%s\" does not support locking. Account \"%s\" has not been "
 "locked!"
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:206
+#: plugins/admin/users/class_userManagement.inc:207
 msgid "Unlock account"
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:208
+#: plugins/admin/users/class_userManagement.inc:209
 msgid "Lock account"
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:235
+#: plugins/admin/users/class_userManagement.inc:236
 #: plugins/personal/generic/class_user.inc:253
 msgid "User account"
 msgstr ""
 
-#: plugins/admin/users/class_userManagement.inc:235
+#: plugins/admin/users/class_userManagement.inc:236
 #: plugins/personal/generic/class_user.inc:247
 msgid "User account information"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRoleManagement.inc:34
-#: include/class_acl.inc:300
-msgid "ACL roles"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:186
+msgid "No ACL settings for this category"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRoleManagement.inc:35
-msgid "ACL roles management"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:188
+#, php-format
+msgid "ACL for these objects: %s"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRole.inc:67
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:192
+msgid "Edit category ACL"
+msgstr ""
+
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:194
+#: include/class_msgPool.inc:517 include/simpleplugin/class_attribute.inc:2671
+#: include/simpleplugin/class_attribute.inc:2672
 #, php-format
-msgid "Contains settings for these objects: %s"
+msgid "Delete"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRole.inc:108
-msgid "Access control roles"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:194
+msgid "Reset category ACL"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRole.inc:111
-msgid "ACL role"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:202
+#: ihtml/themes/default/acl.tpl.c:41
+msgid "List of available ACL categories"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRole.inc:130
-msgid "A name for this role"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:215
+msgid "All objects in current subtree"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRole.inc:134
-msgid "Short description of this role"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:217
+#, php-format
+msgid "Edit ACL for \"%s\""
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRole.inc:140
-msgid "ACLs"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:258
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:359
+msgid "read"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRole.inc:144
-msgid "ACLs which are part of this group"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:260
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:360
+msgid "write"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRole.inc:307
-msgid "No ACL settings for this category"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:343
+#: include/class_msgPool.inc:710 include/class_SnapshotDialogs.inc:33
+#: include/class_SnapshotDialogs.inc:182
+msgid "Object"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRole.inc:309
-#, php-format
-msgid "ACL for these objects: %s"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:346
+msgid "Show/hide advanced settings"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRole.inc:315
-msgid "Edit category ACL"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:351
+msgid "Create objects"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRole.inc:319 include/class_msgPool.inc:517
-#: include/simpleplugin/class_attribute.inc:2671
-#: include/simpleplugin/class_attribute.inc:2672
-#, php-format
-msgid "Delete"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:352
+msgid "Move objects"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRole.inc:319
-msgid "Reset category ACL"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:353
+msgid "Remove objects"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRole.inc:330
-#, php-format
-msgid "Edit ACL for '%s'"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:355
+msgid "Grant permission to owner"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRole.inc:341
-msgid "All objects in current subtree"
+#: plugins/admin/aclrole/class_aclEditionDialog.inc:364
+msgid "Complete object"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRole.inc:392
-#: plugins/admin/aclrole/class_aclRole.inc:396
-#: plugins/admin/aclrole/class_aclRole.inc:498
-msgid "read"
+#: plugins/admin/aclrole/class_aclRoleManagement.inc:34
+#: include/class_acl.inc:39
+msgid "ACL roles"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRole.inc:394
-#: plugins/admin/aclrole/class_aclRole.inc:397
-#: plugins/admin/aclrole/class_aclRole.inc:499
-msgid "write"
+#: plugins/admin/aclrole/class_aclRoleManagement.inc:35
+msgid "ACL roles management"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRole.inc:483 include/class_msgPool.inc:710
-#: include/class_SnapshotDialogs.inc:33 include/class_SnapshotDialogs.inc:182
-msgid "Object"
+#: plugins/admin/aclrole/class_aclRoleManagement.inc:36
+msgid "Manage ACL roles"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRole.inc:485
-msgid "Show/hide advanced settings"
+#: plugins/admin/aclrole/class_aclRole.inc:38
+#, php-format
+msgid "Contains settings for these objects: %s"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRole.inc:490
-msgid "Create objects"
+#: plugins/admin/aclrole/class_aclRole.inc:79
+msgid "Access control roles"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRole.inc:491
-msgid "Move objects"
+#: plugins/admin/aclrole/class_aclRole.inc:82
+msgid "ACL role"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRole.inc:492
-msgid "Remove objects"
+#: plugins/admin/aclrole/class_aclRole.inc:101
+msgid "A name for this role"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRole.inc:494
-msgid "Grant permission to owner"
+#: plugins/admin/aclrole/class_aclRole.inc:105
+msgid "Short description of this role"
 msgstr ""
 
-#: plugins/admin/aclrole/class_aclRole.inc:503
-msgid "Complete object"
+#: plugins/admin/aclrole/class_aclRole.inc:111
+msgid "ACLs"
+msgstr ""
+
+#: plugins/admin/aclrole/class_aclRole.inc:115
+msgid "ACLs which are part of this group"
 msgstr ""
 
 #: plugins/admin/acl/class_aclManagement.inc:38
@@ -756,10 +777,14 @@ msgid "ACL assignments"
 msgstr ""
 
 #: plugins/admin/acl/class_aclManagement.inc:39
-msgid "Access control list management"
+msgid "ACL assignments management"
+msgstr ""
+
+#: plugins/admin/acl/class_aclManagement.inc:40
+msgid "Manage ACL roles assignments to users"
 msgstr ""
 
-#: plugins/admin/acl/class_aclManagement.inc:77
+#: plugins/admin/acl/class_aclManagement.inc:78
 #: plugins/admin/acl/class_aclAssignment.inc:263
 msgid "ACL Assignment"
 msgstr ""
@@ -831,36 +856,37 @@ msgid "Assignments on object or subtree %s"
 msgstr ""
 
 #: plugins/addons/dashboard/class_dashBoard.inc:27
-#: plugins/addons/dashboard/class_dashBoard.inc:32
+#: plugins/addons/dashboard/class_dashBoard.inc:28
+#: plugins/addons/dashboard/class_dashBoard.inc:33
 msgid "Dashboard"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoard.inc:28
+#: plugins/addons/dashboard/class_dashBoard.inc:29
 msgid "Statistics and various informations"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoard.inc:36
+#: plugins/addons/dashboard/class_dashBoard.inc:37
 msgid "Reporting"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoard.inc:47
+#: plugins/addons/dashboard/class_dashBoard.inc:48
 #: plugins/addons/dashboard/main_stats.tpl.c:2
 msgid "Statistics"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:30
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:28
 msgid "Statistics about users"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:41
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:39
 msgid "Users statistics"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:46
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:44
 msgid "Groups statistics"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:51
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:49
 #: plugins/addons/dashboard/users_accounts.tpl.c:8
 msgid "Expired accounts"
 msgstr ""
@@ -1334,537 +1360,541 @@ msgid ""
 msgstr ""
 
 #: plugins/config/class_configInLdap.inc:57
-#: plugins/config/class_configInLdap.inc:69
+#: plugins/config/class_configInLdap.inc:70
 msgid "Configuration"
 msgstr ""
 
 #: plugins/config/class_configInLdap.inc:58
-#: plugins/config/class_configInLdap.inc:62
+#: plugins/config/class_configInLdap.inc:63
 msgid "FusionDirectory configuration"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:87
+#: plugins/config/class_configInLdap.inc:59
+msgid "Configuration screen of FusionDirectory"
+msgstr ""
+
+#: plugins/config/class_configInLdap.inc:88
 msgid "Look and feel"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:90
+#: plugins/config/class_configInLdap.inc:91
 msgid "Language"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:90
+#: plugins/config/class_configInLdap.inc:91
 msgid ""
 "Language of the application. If 'automatic' or not available, the one asked "
 "by the browser will be used. This setting can be overriden per user."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:95
+#: plugins/config/class_configInLdap.inc:96
 msgid "Theme"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:95
+#: plugins/config/class_configInLdap.inc:96
 msgid "Theme to be used"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:101
+#: plugins/config/class_configInLdap.inc:102
 msgid "Timezone"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:101
+#: plugins/config/class_configInLdap.inc:102
 msgid "Timezone to be used"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:109
+#: plugins/config/class_configInLdap.inc:110
 msgid "Schema setup"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:112
+#: plugins/config/class_configInLdap.inc:113
 msgid "Schema validation"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:113
+#: plugins/config/class_configInLdap.inc:114
 msgid "Enables schema checking during login."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:120
+#: plugins/config/class_configInLdap.inc:121
 msgid "Password settings"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:123
+#: plugins/config/class_configInLdap.inc:124
 msgid "Password default hash"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:123
+#: plugins/config/class_configInLdap.inc:124
 msgid "Default hash to be used"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:128
+#: plugins/config/class_configInLdap.inc:129
 msgid "Force default hash"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:128
+#: plugins/config/class_configInLdap.inc:129
 msgid "Force the use of the default password hash"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:132
+#: plugins/config/class_configInLdap.inc:133
 msgid "Password minimum length"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:132
+#: plugins/config/class_configInLdap.inc:133
 msgid "Minimum length of user passwords"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:137
+#: plugins/config/class_configInLdap.inc:138
 msgid "Password minimum differs"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:137
+#: plugins/config/class_configInLdap.inc:138
 msgid "Minimum number of different characters from last password"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:142
+#: plugins/config/class_configInLdap.inc:143
 msgid "Use account expiration"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:143
+#: plugins/config/class_configInLdap.inc:144
 msgid ""
 "Enables shadow attribute tests during the login to FusionDirectory and "
 "forces password renewal or account locking"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:147
+#: plugins/config/class_configInLdap.inc:148
 msgid "SASL Realm"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:151
+#: plugins/config/class_configInLdap.inc:152
 msgid "SASL Exop"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:151
+#: plugins/config/class_configInLdap.inc:152
 msgid "Attribute to be stored in the userPassword attribute"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:157
+#: plugins/config/class_configInLdap.inc:158
 msgid "Core settings"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:160
+#: plugins/config/class_configInLdap.inc:161
 msgid "Enable primary group filter"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:161
+#: plugins/config/class_configInLdap.inc:162
 msgid ""
 "It is time consuming to evaluate which groups are primary and which are not, "
 "so you may want to disable it if your group plugin is slow."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:166
+#: plugins/config/class_configInLdap.inc:167
 msgid "Display summary in listings"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:167
+#: plugins/config/class_configInLdap.inc:168
 msgid ""
 "Determines whether a status bar will be shown on the bottom of lists, "
 "displaying a short summary of type and number of elements in the list."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:172
+#: plugins/config/class_configInLdap.inc:173
 msgid "Edit locking"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:173
+#: plugins/config/class_configInLdap.inc:174
 msgid ""
 "Check if a entry currently being edited has been modified outside of "
 "FusionDirectory in the meantime."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:178
+#: plugins/config/class_configInLdap.inc:179
 msgid "Enable logging"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:179
+#: plugins/config/class_configInLdap.inc:180
 msgid "Event logging on FusionDirectory side."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:184
+#: plugins/config/class_configInLdap.inc:185
 msgid "LDAP size limit"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:184
+#: plugins/config/class_configInLdap.inc:185
 msgid "Defines the number of entries to get from LDAP by default."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:191
+#: plugins/config/class_configInLdap.inc:192
 msgid "Login and session"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:194
+#: plugins/config/class_configInLdap.inc:195
 msgid "Login attribute"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:195
+#: plugins/config/class_configInLdap.inc:196
 msgid "Which LDAP attribute should be used as the login name during login."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:201
+#: plugins/config/class_configInLdap.inc:202
 msgid "Enforce encrypted connections"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:202
+#: plugins/config/class_configInLdap.inc:203
 msgid ""
 "Enables PHP security checks to force encrypted access (https) to the web "
 "interface."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:206
+#: plugins/config/class_configInLdap.inc:207
 msgid "Warn if session is not encrypted"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:207
+#: plugins/config/class_configInLdap.inc:208
 msgid "will display a warning to the user when http is used instead of https."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:212
+#: plugins/config/class_configInLdap.inc:213
 msgid "Session lifetime"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:212
+#: plugins/config/class_configInLdap.inc:213
 msgid "Defines when a session will expire in seconds."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:219
+#: plugins/config/class_configInLdap.inc:220
 #: include/class_SnapshotDialogs.inc:186
 msgid "Snapshots"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:222
+#: plugins/config/class_configInLdap.inc:223
 msgid "Enable snapshots"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:222
+#: plugins/config/class_configInLdap.inc:223
 msgid ""
 "This enables you to save certain states of entries and restore them later on."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:227
+#: plugins/config/class_configInLdap.inc:228
 msgid "Snapshot base"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:227
+#: plugins/config/class_configInLdap.inc:228
 msgid "The base where snapshots should be stored inside of the LDAP."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:234
+#: plugins/config/class_configInLdap.inc:235
 msgid "SSL"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:237
+#: plugins/config/class_configInLdap.inc:238
 msgid "Key path"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:237
+#: plugins/config/class_configInLdap.inc:238
 msgid "Path to FusionDirectory private key. Unused for now."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:242
+#: plugins/config/class_configInLdap.inc:243
 msgid "Certificate path"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:242
+#: plugins/config/class_configInLdap.inc:243
 msgid "Path to FusionDirectory certificate. Unused for now."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:247
-#: plugins/config/class_configInLdap.inc:262
+#: plugins/config/class_configInLdap.inc:248
+#: plugins/config/class_configInLdap.inc:263
 msgid "CA certificate path"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:247
+#: plugins/config/class_configInLdap.inc:248
 msgid "Path to the CA certificate. Used for validating Argonaut Server host."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:254
+#: plugins/config/class_configInLdap.inc:255
 msgid "CAS"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:257
+#: plugins/config/class_configInLdap.inc:258
 msgid "Enable CAS"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:257
+#: plugins/config/class_configInLdap.inc:258
 msgid "CAS login will be used instead of LDAP bind"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:262
+#: plugins/config/class_configInLdap.inc:263
 msgid "Path to the CA certificate of the CAS server"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:267
+#: plugins/config/class_configInLdap.inc:268
 msgid "Host"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:267
+#: plugins/config/class_configInLdap.inc:268
 msgid "Host of the CAS server"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:272
+#: plugins/config/class_configInLdap.inc:273
 msgid "Port"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:272
+#: plugins/config/class_configInLdap.inc:273
 msgid "Port the CAS server is listening on"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:277
+#: plugins/config/class_configInLdap.inc:278
 msgid "CAS context"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:277
+#: plugins/config/class_configInLdap.inc:278
 msgid "CAS context to be used"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:284
+#: plugins/config/class_configInLdap.inc:285
 msgid "People and group storage"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:288
+#: plugins/config/class_configInLdap.inc:289
 msgid "People DN attribute"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:288
+#: plugins/config/class_configInLdap.inc:289
 msgid "Attribute to use at the beginning of users dn"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:293
+#: plugins/config/class_configInLdap.inc:294
 msgid "CN pattern"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:293
+#: plugins/config/class_configInLdap.inc:294
 msgid "The pattern to use to build the common name field"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:298
+#: plugins/config/class_configInLdap.inc:299
 msgid "Strict naming policy"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:299
+#: plugins/config/class_configInLdap.inc:300
 msgid "Enables strict checking of user and group names"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:304
+#: plugins/config/class_configInLdap.inc:305
 msgid "Group/user min id"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:305
+#: plugins/config/class_configInLdap.inc:306
 msgid ""
 "The minimum assignable user or group id to avoid security leaks with id 0 "
 "accounts."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:310
+#: plugins/config/class_configInLdap.inc:311
 msgid "Next id hook"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:310
+#: plugins/config/class_configInLdap.inc:311
 msgid ""
 "A script to be called for finding the next free id number for users or "
 "groups."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:314
+#: plugins/config/class_configInLdap.inc:315
 msgid "Base number for user id"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:315
+#: plugins/config/class_configInLdap.inc:316
 msgid "Where to start looking for a new free user id."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:320
+#: plugins/config/class_configInLdap.inc:321
 msgid "Base number for group id"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:321
+#: plugins/config/class_configInLdap.inc:322
 msgid "Where to start looking for a new free group id."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:326
+#: plugins/config/class_configInLdap.inc:327
 msgid "Users RDN"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:326
+#: plugins/config/class_configInLdap.inc:327
 msgid "The branch where users are stored."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:331
+#: plugins/config/class_configInLdap.inc:332
 msgid "Groups RDN"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:331
+#: plugins/config/class_configInLdap.inc:332
 msgid "The branch where groups are stored."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:336
+#: plugins/config/class_configInLdap.inc:337
 msgid "ACL role RDN"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:336
+#: plugins/config/class_configInLdap.inc:337
 msgid "The branch where ACL roles are stored."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:341
+#: plugins/config/class_configInLdap.inc:342
 msgid "Id allocation method"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:341
+#: plugins/config/class_configInLdap.inc:342
 msgid "Method to allocate user/group ids"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:344
+#: plugins/config/class_configInLdap.inc:345
 msgid "Traditional"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:344
+#: plugins/config/class_configInLdap.inc:345
 msgid "Samba unix id pool"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:347
+#: plugins/config/class_configInLdap.inc:348
 msgid "Pool user id min"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:347
+#: plugins/config/class_configInLdap.inc:348
 msgid "Minimum value for user id when using pool method"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:352
+#: plugins/config/class_configInLdap.inc:353
 msgid "Pool user id max"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:352
+#: plugins/config/class_configInLdap.inc:353
 msgid "Maximum value for user id when using pool method"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:357
+#: plugins/config/class_configInLdap.inc:358
 msgid "Pool group id min"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:357
+#: plugins/config/class_configInLdap.inc:358
 msgid "Minimum value for group id when using pool method"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:362
+#: plugins/config/class_configInLdap.inc:363
 msgid "Pool group id max"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:362
+#: plugins/config/class_configInLdap.inc:363
 msgid "Maximum value for group id when using pool method"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:369
+#: plugins/config/class_configInLdap.inc:370
 msgid "Debugging"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:372
+#: plugins/config/class_configInLdap.inc:373
 msgid "Display errors"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:373
+#: plugins/config/class_configInLdap.inc:374
 msgid ""
 "Shows PHP errors in the upper part of the screen. This should be disabled in "
 "productive deployments, because there might be some passwords in it."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:377
+#: plugins/config/class_configInLdap.inc:378
 msgid "Maximum LDAP query time"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:377
+#: plugins/config/class_configInLdap.inc:378
 msgid ""
 "Stop LDAP actions if there is no answer within the specified number of "
 "seconds."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:382
+#: plugins/config/class_configInLdap.inc:383
 msgid "Log LDAP statistics"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:383
+#: plugins/config/class_configInLdap.inc:384
 msgid ""
 "Track LDAP timing statistics to the syslog. This may help to find indexing "
 "problems or bad search filters."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:388
+#: plugins/config/class_configInLdap.inc:389
 msgid "Debug level"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:389
+#: plugins/config/class_configInLdap.inc:390
 msgid "Display certain information on each page load."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:401
+#: plugins/config/class_configInLdap.inc:402
 msgid "Miscellaneous"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:406
+#: plugins/config/class_configInLdap.inc:407
 msgid "Hooks that are called when specific actions happens"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:410
+#: plugins/config/class_configInLdap.inc:411
 msgid "tab"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:410
+#: plugins/config/class_configInLdap.inc:411
 msgid "The tab that this hook concerns"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:415
+#: plugins/config/class_configInLdap.inc:416
 msgid "mode"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:415
+#: plugins/config/class_configInLdap.inc:416
 msgid "When to call this command"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:421
+#: plugins/config/class_configInLdap.inc:422
 msgid "cmd"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:421
+#: plugins/config/class_configInLdap.inc:422
 msgid "The command that will be called"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:428
+#: plugins/config/class_configInLdap.inc:429
 msgid "Hooks"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:435
+#: plugins/config/class_configInLdap.inc:436
 msgid "Display hook output"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:436
+#: plugins/config/class_configInLdap.inc:437
 msgid ""
 "When enabled successful hook execution output is displayed to the user using "
 "a dialog."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:441
+#: plugins/config/class_configInLdap.inc:442
 msgid "Available shells"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:441
+#: plugins/config/class_configInLdap.inc:442
 msgid "Available POSIX shells for FD users."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:448
+#: plugins/config/class_configInLdap.inc:449
 msgid "Show ACL tab on all objects"
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:449
+#: plugins/config/class_configInLdap.inc:450
 msgid ""
 "For very specific ACL rights setting where you might need to give right on a "
 "single object."
 msgstr ""
 
-#: plugins/config/class_configInLdap.inc:463
+#: plugins/config/class_configInLdap.inc:464
 #: setup/class_setupStep_Language.inc:69
 msgid "Automatic"
 msgstr ""
@@ -2076,13 +2106,13 @@ msgstr ""
 #: include/class_config.inc:479 include/class_msgPool.inc:215
 #: include/class_msgPool.inc:235 include/class_msgPool.inc:265
 #: include/class_msgPool.inc:682 include/class_msgPool.inc:713
-#: include/class_msgPool.inc:740 include/functions.inc:3075
-#: include/functions.inc:3096 include/functions.inc:3126
-#: include/functions.inc:3134 include/functions.inc:3146
-#: include/functions.inc:3150 include/functions.inc:3157
-#: include/functions.inc:3166 include/functions.inc:3228
-#: include/class_msg_dialog.inc:129 include/class_xml.inc:58
-#: include/class_plugin.inc:1662 include/class_CopyPasteHandler.inc:278
+#: include/class_msgPool.inc:740 include/functions.inc:3106
+#: include/functions.inc:3127 include/functions.inc:3157
+#: include/functions.inc:3165 include/functions.inc:3177
+#: include/functions.inc:3181 include/functions.inc:3188
+#: include/functions.inc:3197 include/functions.inc:3259
+#: include/class_msg_dialog.inc:128 include/class_xml.inc:58
+#: include/class_plugin.inc:1663 include/class_CopyPasteHandler.inc:278
 #: include/simpleplugin/class_dialogAttributes.inc:733
 #: include/simpleplugin/class_attribute.inc:1530
 #: include/simpleplugin/class_attribute.inc:1533
@@ -2091,11 +2121,12 @@ msgstr ""
 #: include/simpleplugin/class_attribute.inc:1877
 #: include/simpleplugin/class_attribute.inc:1879
 #: include/simpleplugin/class_simpleTabs.inc:90
+#: include/simpleplugin/class_simpleTabs.inc:405
 #: include/password-methods/class_password-methods-sasl.inc:60
 #: include/password-methods/class_password-methods-sasl.inc:86
-#: include/password-methods/class_password-methods.inc:434
-#: include/password-methods/class_password-methods.inc:444
-#: include/class_SnapshotHandler.inc:415 html/index.php:438 html/index.php:448
+#: include/password-methods/class_password-methods.inc:437
+#: include/password-methods/class_password-methods.inc:447
+#: include/class_SnapshotHandler.inc:415 html/index.php:434 html/index.php:444
 #: setup/class_setupStep_Migrate.inc:935
 #: ihtml/themes/default/msg_dialog.tpl.c:2 setup/setup_checks.tpl.c:5
 msgid "Error"
@@ -2214,8 +2245,8 @@ msgid "XML error in fusiondirectory.conf: %s at line %d"
 msgstr ""
 
 #: include/class_config.inc:162 include/class_config.inc:300
-#: include/class_config.inc:1001 include/class_config.inc:1014
-#: include/functions.inc:660 include/class_timezone.inc:51
+#: include/class_config.inc:985 include/class_config.inc:998
+#: include/functions.inc:663 include/class_timezone.inc:51
 #: include/password-methods/class_password-methods-sha.inc:71
 #: include/password-methods/class_password-methods-ssha.inc:75
 #: include/password-methods/class_password-methods-ssha.inc:91
@@ -2232,16 +2263,16 @@ msgid ""
 msgstr ""
 
 #: include/class_config.inc:337 include/class_ldap.inc:917
-#: include/class_ldap.inc:1371 include/functions.inc:523
-#: include/functions.inc:675 include/functions.inc:722
-#: include/functions.inc:783 include/functions.inc:838
-#: include/functions.inc:2965 include/simpleplugin/class_simplePlugin.inc:545
+#: include/class_ldap.inc:1371 include/functions.inc:526
+#: include/functions.inc:678 include/functions.inc:725
+#: include/functions.inc:786 include/functions.inc:841
+#: include/functions.inc:2985 include/simpleplugin/class_simplePlugin.inc:545
 #: include/simpleplugin/class_attribute.inc:2895
-#: include/password-methods/class_password-methods.inc:196
+#: include/password-methods/class_password-methods.inc:199
 #: include/class_SnapshotHandler.inc:50 include/class_SnapshotHandler.inc:244
 #: include/class_SnapshotHandler.inc:277 include/class_SnapshotHandler.inc:292
 #: include/class_SnapshotHandler.inc:422 include/class_SnapshotHandler.inc:425
-#: html/index.php:364 html/class_passwordRecovery.inc:497
+#: html/index.php:360 html/class_passwordRecovery.inc:497
 #: setup/class_setupStep_Migrate.inc:451
 #: setup/class_setupStep_Migrate.inc:1130
 msgid "LDAP error"
@@ -2256,25 +2287,25 @@ msgstr ""
 msgid "The selected mail method (class %s) is not available"
 msgstr ""
 
-#: include/class_config.inc:1002
+#: include/class_config.inc:986
 #, php-format
 msgid ""
 "The snapshot functionality is enabled, but the required variable '%s' is not "
 "set."
 msgstr ""
 
-#: include/class_config.inc:1015
+#: include/class_config.inc:999
 #, php-format
 msgid ""
 "The snapshot functionality is enabled, but the required compression module "
 "is missing. Please install '%s'."
 msgstr ""
 
-#: include/class_config.inc:1121
+#: include/class_config.inc:1104
 msgid "All categories"
 msgstr ""
 
-#: include/class_config.inc:1248
+#: include/class_config.inc:1231
 msgid "My account"
 msgstr ""
 
@@ -2288,12 +2319,12 @@ msgid "LDAP performance is poor: last query took about %.2fs!"
 msgstr ""
 
 #: include/class_ldap.inc:868 include/class_ldap.inc:904
-#: include/functions.inc:565 include/functions.inc:650
-#: include/functions.inc:770 include/functions.inc:1189
-#: include/functions.inc:2272 include/functions.inc:2314
-#: include/functions.inc:2343 include/class_session.inc:50
+#: include/functions.inc:568 include/functions.inc:653
+#: include/functions.inc:773 include/functions.inc:1192
+#: include/functions.inc:2275 include/functions.inc:2317
+#: include/functions.inc:2346 include/class_session.inc:50
 #: include/class_session.inc:87 include/class_session.inc:125
-#: include/class_log.inc:96 include/class_acl.inc:169
+#: include/class_log.inc:96 include/class_acl.inc:118
 msgid "Internal error"
 msgstr ""
 
@@ -2914,7 +2945,7 @@ msgid ""
 "Fatal error: cannot instantiate class '%s' - try running '%s' to fix this"
 msgstr ""
 
-#: include/functions.inc:493 include/functions.inc:3263
+#: include/functions.inc:496 include/functions.inc:3294
 #: include/class_xml.inc:61 include/simpleplugin/class_simplePlugin.inc:263
 #: include/simpleplugin/class_simplePlugin.inc:268
 #: include/simpleplugin/class_simplePlugin.inc:280
@@ -2922,245 +2953,245 @@ msgstr ""
 msgid "Fatal error"
 msgstr ""
 
-#: include/functions.inc:494
+#: include/functions.inc:497
 #, php-format
 msgid "FATAL: Error when connecting the LDAP. Server said '%s'."
 msgstr ""
 
-#: include/functions.inc:565
+#: include/functions.inc:568
 msgid ""
 "Login (uid) is not unique inside the LDAP tree. Please contact your "
 "administrator."
 msgstr ""
 
-#: include/functions.inc:598
+#: include/functions.inc:601
 msgid "Authentication error"
 msgstr ""
 
-#: include/functions.inc:599
+#: include/functions.inc:602
 msgid ""
 "It seems your user password has expired. Please use <a href=\"recovery.php"
 "\">password recovery</a> to change it."
 msgstr ""
 
-#: include/functions.inc:650 include/functions.inc:770
+#: include/functions.inc:653 include/functions.inc:773
 msgid "Error while adding a lock. Contact the developers!"
 msgstr ""
 
-#: include/functions.inc:660
+#: include/functions.inc:663
 #, php-format
 msgid ""
 "Cannot create locking information in LDAP tree. Please contact your "
 "administrator!"
 msgstr ""
 
-#: include/functions.inc:660
+#: include/functions.inc:663
 #, php-format
 msgid "LDAP server returned: %s"
 msgstr ""
 
-#: include/functions.inc:791
+#: include/functions.inc:794
 msgid ""
 "Found multiple locks for object to be locked. This should not happen - "
 "cleaning up multiple references."
 msgstr ""
 
-#: include/functions.inc:1109
+#: include/functions.inc:1112
 #, php-format
 msgid "The size limit of %d entries is exceed!"
 msgstr ""
 
-#: include/functions.inc:1111
+#: include/functions.inc:1114
 #, php-format
 msgid ""
 "Set the new size limit to %s and show me this message if the limit still "
 "exceeds"
 msgstr ""
 
-#: include/functions.inc:1128
+#: include/functions.inc:1131
 msgid "Configure"
 msgstr ""
 
-#: include/functions.inc:1133
+#: include/functions.inc:1136
 msgid "incomplete"
 msgstr ""
 
-#: include/functions.inc:1538
+#: include/functions.inc:1541
 msgid "Continue anyway"
 msgstr ""
 
-#: include/functions.inc:1540
+#: include/functions.inc:1543
 msgid "Edit anyway"
 msgstr ""
 
-#: include/functions.inc:1542
+#: include/functions.inc:1545
 #, php-format
 msgid "You're going to edit the LDAP entry/entries %s"
 msgstr ""
 
-#: include/functions.inc:1796
+#: include/functions.inc:1799
 msgid "Entries per page"
 msgstr ""
 
-#: include/functions.inc:1827 include/class_filter.inc:353
+#: include/functions.inc:1830 include/class_filter.inc:353
 msgid "Apply filter"
 msgstr ""
 
-#: include/functions.inc:2095
+#: include/functions.inc:2098
 #, php-format
 msgid "%sB"
 msgstr ""
 
-#: include/functions.inc:2096
+#: include/functions.inc:2099
 #, php-format
 msgid "%sKiB"
 msgstr ""
 
-#: include/functions.inc:2097
+#: include/functions.inc:2100
 #, php-format
 msgid "%sMiB"
 msgstr ""
 
-#: include/functions.inc:2098
+#: include/functions.inc:2101
 #, php-format
 msgid "%sGiB"
 msgstr ""
 
-#: include/functions.inc:2099
+#: include/functions.inc:2102
 #, php-format
 msgid "%sTiB"
 msgstr ""
 
-#: include/functions.inc:2100
+#: include/functions.inc:2103
 #, php-format
 msgid "%sPiB"
 msgstr ""
 
-#: include/functions.inc:2101
+#: include/functions.inc:2104
 #, php-format
 msgid "%sEiB"
 msgstr ""
 
-#: include/functions.inc:2102
+#: include/functions.inc:2105
 #, php-format
 msgid "%sZiB"
 msgstr ""
 
-#: include/functions.inc:2103
+#: include/functions.inc:2106
 #, php-format
 msgid "%sYiB"
 msgstr ""
 
-#: include/functions.inc:2135 include/class_filter.inc:315
+#: include/functions.inc:2138 include/class_filter.inc:315
 msgid "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
 msgstr ""
 
-#: include/functions.inc:2272
+#: include/functions.inc:2275
 #, php-format
 msgid ""
 "File '%s' could not be deleted. Try fusiondirectory-setup --check-"
 "directories to fix permissions."
 msgstr ""
 
-#: include/functions.inc:2314
+#: include/functions.inc:2317
 msgid "Cannot write to revision file!"
 msgstr ""
 
-#: include/functions.inc:2343
+#: include/functions.inc:2346
 msgid "Cannot read to revision file!"
 msgstr ""
 
-#: include/functions.inc:2545
+#: include/functions.inc:2548
 msgid "'nextIdHook' is not available. Using default base!"
 msgstr ""
 
-#: include/functions.inc:2563
+#: include/functions.inc:2566
 msgid "LDAP warning"
 msgstr ""
 
-#: include/functions.inc:2563
+#: include/functions.inc:2566
 msgid "Cannot get schema information from server. No schema check possible!"
 msgstr ""
 
-#: include/functions.inc:2581
+#: include/functions.inc:2584
 msgid ""
 "Used to lock currently edited entries to avoid multiple changes at the same "
 "time."
 msgstr ""
 
-#: include/functions.inc:2593
+#: include/functions.inc:2596
 #, php-format
 msgid "Missing required object class '%s'!"
 msgstr ""
 
-#: include/functions.inc:2596
+#: include/functions.inc:2599
 #, php-format
 msgid "Missing optional object class '%s'!"
 msgstr ""
 
-#: include/functions.inc:2600
+#: include/functions.inc:2603
 #, php-format
 msgid "Class(es) available"
 msgstr ""
 
-#: include/functions.inc:2620
+#: include/functions.inc:2623
 msgid ""
 "You have installed the mixed groups plugin, but your schema configuration "
 "does not support this."
 msgstr ""
 
-#: include/functions.inc:2621
+#: include/functions.inc:2624
 msgid ""
 "In order to use mixed groups the objectClass \"posixGroup\" must be AUXILIARY"
 msgstr ""
 
-#: include/functions.inc:2624
+#: include/functions.inc:2627
 msgid ""
 "Your schema is configured to support mixed groups, but this plugin is not "
 "present."
 msgstr ""
 
-#: include/functions.inc:2625
+#: include/functions.inc:2628
 msgid "The objectClass \"posixGroup\" must be STRUCTURAL"
 msgstr ""
 
-#: include/functions.inc:3075 include/functions.inc:3096
-#: include/functions.inc:3134 include/functions.inc:3146
-#: include/functions.inc:3150 include/functions.inc:3157
-#: include/functions.inc:3166
+#: include/functions.inc:3106 include/functions.inc:3127
+#: include/functions.inc:3165 include/functions.inc:3177
+#: include/functions.inc:3181 include/functions.inc:3188
+#: include/functions.inc:3197
 msgid "Cannot allocate a free ID:"
 msgstr ""
 
-#: include/functions.inc:3075
+#: include/functions.inc:3106
 msgid "unknown idAllocation method!"
 msgstr ""
 
-#: include/functions.inc:3096
+#: include/functions.inc:3127
 #, php-format
 msgid "%sPoolMin >= %sPoolMax!"
 msgstr ""
 
-#: include/functions.inc:3126
+#: include/functions.inc:3157
 msgid "Cannot create sambaUnixIdPool entry!"
 msgstr ""
 
-#: include/functions.inc:3134
+#: include/functions.inc:3165
 msgid "sambaUnixIdPool is not unique!"
 msgstr ""
 
-#: include/functions.inc:3146 include/functions.inc:3150
+#: include/functions.inc:3177 include/functions.inc:3181
 msgid "no ID available!"
 msgstr ""
 
-#: include/functions.inc:3166
+#: include/functions.inc:3197
 msgid "maximum tries exceeded!"
 msgstr ""
 
-#: include/functions.inc:3228
+#: include/functions.inc:3259
 msgid "Cannot allocate a free ID!"
 msgstr ""
 
-#: include/functions.inc:3264
+#: include/functions.inc:3295
 #, php-format
 msgid "Cannot locate file '%s' - please run '%s' to fix this"
 msgstr ""
@@ -3170,7 +3201,7 @@ msgstr ""
 msgid "Requested channel does not exist! Please contact your Administrator."
 msgstr ""
 
-#: include/class_pluglist.inc:170
+#: include/class_pluglist.inc:173
 msgid "All objects in this category"
 msgstr ""
 
@@ -3244,7 +3275,7 @@ msgstr ""
 msgid "Toggle information"
 msgstr ""
 
-#: include/class_msg_dialog.inc:168
+#: include/class_msg_dialog.inc:167
 msgid "Please fix the above error and reload the page."
 msgstr ""
 
@@ -3316,10 +3347,10 @@ msgstr ""
 msgid "XML error"
 msgstr ""
 
-#: include/class_plugin.inc:555
+#: include/class_plugin.inc:554
 msgid ""
 "The object has changed since opened in FusionDirectory. All changes that may "
-"be done by others get lost if you save this entry!"
+"be done by others will get lost if you save this entry!"
 msgstr ""
 
 #: include/class_plugin.inc:1466
@@ -3563,12 +3594,25 @@ msgstr ""
 msgid "Delete process has been canceled by plugin '%s': %s"
 msgstr ""
 
+#: include/simpleplugin/class_simpleTabs.inc:405
+#, php-format
+msgid "Move from \"%s\" to \"%s\" failed"
+msgstr ""
+
 #: include/class_timezone.inc:52
 #, php-format
 msgid "The timezone setting \"%s\" in your configuration is not valid."
 msgstr ""
 
-#: include/class_acl.inc:169
+#: include/class_acl.inc:35 include/class_acl.inc:39
+msgid "ACL"
+msgstr ""
+
+#: include/class_acl.inc:36
+msgid "Manage access control lists"
+msgstr ""
+
+#: include/class_acl.inc:118
 #, php-format
 msgid ""
 "Unkown ACL type '%s'!\n"
@@ -3576,24 +3620,16 @@ msgid ""
 "your acls to the new format."
 msgstr ""
 
-#: include/class_acl.inc:216
+#: include/class_acl.inc:165
 #, php-format
 msgid "Unknown entry '%s'!"
 msgstr ""
 
-#: include/class_acl.inc:219
+#: include/class_acl.inc:168
 #, php-format
 msgid "All users"
 msgstr ""
 
-#: include/class_acl.inc:296 include/class_acl.inc:300
-msgid "ACL"
-msgstr ""
-
-#: include/class_acl.inc:297
-msgid "Manage access control lists"
-msgstr ""
-
 #: include/password-methods/class_password-methods-sasl.inc:60
 #, php-format
 msgid "Cannot change password, unknown user '%s'"
@@ -3626,63 +3662,63 @@ msgid ""
 "fusiondirectory-setup --check-config to fix this."
 msgstr ""
 
-#: html/index.php:175
+#: html/index.php:171
 msgid "Smarty error"
 msgstr ""
 
-#: html/index.php:177
+#: html/index.php:173
 #, php-format
 msgid "Directory \"%s\" specified as compile directory is not accessible!"
 msgstr ""
 
-#: html/index.php:212
+#: html/index.php:208
 msgid "Your FusionDirectory session has expired!"
 msgstr ""
 
-#: html/index.php:215
+#: html/index.php:211
 msgid "Your IP has changed!"
 msgstr ""
 
-#: html/index.php:218
+#: html/index.php:214
 #, php-format
 msgid "Invalid plugin parameter \"%s\"!"
 msgstr ""
 
-#: html/index.php:221
+#: html/index.php:217
 msgid "No session found!"
 msgstr ""
 
-#: html/index.php:256
+#: html/index.php:252
 msgid "LDAP schema check reported errors:"
 msgstr ""
 
-#: html/index.php:282
+#: html/index.php:278
 msgid "Please specify a valid username!"
 msgstr ""
 
-#: html/index.php:285
+#: html/index.php:281
 msgid "Please specify your password!"
 msgstr ""
 
-#: html/index.php:304
+#: html/index.php:300
 msgid "Please check the username/password combination."
 msgstr ""
 
-#: html/index.php:337
+#: html/index.php:333
 msgid "Account locked. Please contact your system administrator!"
 msgstr ""
 
-#: html/index.php:440
+#: html/index.php:436
 #, php-format
 msgid "CAS user \"%s\" could not be found in the LDAP"
 msgstr ""
 
-#: html/index.php:450
+#: html/index.php:446
 #, php-format
 msgid "CAS user \"%s\" match several users in the LDAP"
 msgstr ""
 
-#: html/index.php:485
+#: html/index.php:481
 msgid ""
 "Your browser has cookies disabled. Please enable cookies and reload this "
 "page before logging in!"
@@ -3913,11 +3949,11 @@ msgid "Finish"
 msgstr ""
 
 #: setup/class_setupStep_Finish.inc:41
-msgid "Write configuration file"
+msgid "Finish - write the configuration file"
 msgstr ""
 
 #: setup/class_setupStep_Finish.inc:42
-msgid "Finish - write the configuration file"
+msgid "Write configuration file"
 msgstr ""
 
 #: setup/class_setupStep_Finish.inc:89
@@ -4209,11 +4245,11 @@ msgid ""
 msgstr ""
 
 #: setup/class_setupStep_Welcome.inc:51
-msgid "The welcome message"
+msgid "Welcome to FusionDirectory setup wizard"
 msgstr ""
 
 #: setup/class_setupStep_Welcome.inc:52
-msgid "Welcome to FusionDirectory setup wizard"
+msgid "The welcome message"
 msgstr ""
 
 #: setup/class_setupStep_Checks.inc:37
@@ -4443,10 +4479,6 @@ msgstr ""
 msgid "Show Samba users"
 msgstr ""
 
-#: plugins/admin/aclrole/acl_role.tpl.c:2 ihtml/themes/default/acl.tpl.c:41
-msgid "List of available ACL categories"
-msgstr ""
-
 #: plugins/admin/acl/remove.tpl.c:5
 msgid ""
 "This includes all ACL assignments made on this node(s). If you want the list "
diff --git a/locale/es/fusiondirectory.po b/locale/es/fusiondirectory.po
index 0856cc88400f5a7ef55b2e87be0b4c4731f7feb8..73bc68e9635f5223ea9611b15207fbc370be748f 100644
--- a/locale/es/fusiondirectory.po
+++ b/locale/es/fusiondirectory.po
@@ -7,8 +7,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory-109\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2016-01-04 11:54+0100\n"
-"PO-Revision-Date: 2016-01-04 10:52+0000\n"
+"POT-Creation-Date: 2016-01-22 11:26+0100\n"
+"PO-Revision-Date: 2016-01-22 10:24+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n"
 "Language-Team: Spanish (http://www.transifex.com/fusiondirectory/FusionDirectory-109/language/es/)\n"
 "MIME-Version: 1.0\n"
@@ -95,7 +95,7 @@ msgstr "Número de Fax"
 
 #: plugins/admin/groups/class_roleGeneric.inc:78
 #: plugins/admin/users/class_userManagement.inc:42
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:29
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:27
 #: setup/class_setupStep_Migrate.inc:871
 msgid "Users"
 msgstr "Usuarios"
@@ -204,10 +204,10 @@ msgid "Only allow this group to connect to this list of hosts"
 msgstr ""
 
 #: plugins/admin/groups/class_group.inc:181
-#: plugins/personal/posix/class_posixAccount.inc:458 include/functions.inc:791
-#: include/functions.inc:2545 include/class_xml.inc:55
+#: plugins/personal/posix/class_posixAccount.inc:458 include/functions.inc:794
+#: include/functions.inc:2548 include/class_xml.inc:55
 #: include/simpleplugin/class_simpleTabs.inc:325 html/index.php:56
-#: html/index.php:62 html/index.php:485 html/class_passwordRecovery.inc:378
+#: html/index.php:62 html/index.php:481 html/class_passwordRecovery.inc:378
 #: setup/class_setupStep_Migrate.inc:572
 #: setup/class_setupStep_Migrate.inc:1083
 #: setup/class_setupStep_Migrate.inc:1202
@@ -250,7 +250,7 @@ msgstr "Objetos miembros"
 msgid "Objects member of this group"
 msgstr ""
 
-#: plugins/admin/groups/class_ogroup.inc:317
+#: plugins/admin/groups/class_ogroup.inc:318
 msgid ""
 "Putting both workstations and terminals in the same group is not allowed"
 msgstr ""
@@ -873,19 +873,19 @@ msgstr ""
 msgid "Statistics"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:30
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:28
 msgid "Statistics about users"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:41
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:39
 msgid "Users statistics"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:46
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:44
 msgid "Groups statistics"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:51
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:49
 #: plugins/addons/dashboard/users_accounts.tpl.c:8
 msgid "Expired accounts"
 msgstr ""
@@ -2106,11 +2106,11 @@ msgstr "Seleccione todos"
 #: include/class_config.inc:479 include/class_msgPool.inc:215
 #: include/class_msgPool.inc:235 include/class_msgPool.inc:265
 #: include/class_msgPool.inc:682 include/class_msgPool.inc:713
-#: include/class_msgPool.inc:740 include/functions.inc:3075
-#: include/functions.inc:3096 include/functions.inc:3126
-#: include/functions.inc:3134 include/functions.inc:3146
-#: include/functions.inc:3150 include/functions.inc:3157
-#: include/functions.inc:3166 include/functions.inc:3228
+#: include/class_msgPool.inc:740 include/functions.inc:3106
+#: include/functions.inc:3127 include/functions.inc:3157
+#: include/functions.inc:3165 include/functions.inc:3177
+#: include/functions.inc:3181 include/functions.inc:3188
+#: include/functions.inc:3197 include/functions.inc:3259
 #: include/class_msg_dialog.inc:128 include/class_xml.inc:58
 #: include/class_plugin.inc:1663 include/class_CopyPasteHandler.inc:278
 #: include/simpleplugin/class_dialogAttributes.inc:733
@@ -2121,11 +2121,12 @@ msgstr "Seleccione todos"
 #: include/simpleplugin/class_attribute.inc:1877
 #: include/simpleplugin/class_attribute.inc:1879
 #: include/simpleplugin/class_simpleTabs.inc:90
+#: include/simpleplugin/class_simpleTabs.inc:405
 #: include/password-methods/class_password-methods-sasl.inc:60
 #: include/password-methods/class_password-methods-sasl.inc:86
-#: include/password-methods/class_password-methods.inc:434
-#: include/password-methods/class_password-methods.inc:444
-#: include/class_SnapshotHandler.inc:415 html/index.php:438 html/index.php:448
+#: include/password-methods/class_password-methods.inc:437
+#: include/password-methods/class_password-methods.inc:447
+#: include/class_SnapshotHandler.inc:415 html/index.php:434 html/index.php:444
 #: setup/class_setupStep_Migrate.inc:935
 #: ihtml/themes/default/msg_dialog.tpl.c:2 setup/setup_checks.tpl.c:5
 msgid "Error"
@@ -2244,8 +2245,8 @@ msgid "XML error in fusiondirectory.conf: %s at line %d"
 msgstr "Error XML en fusiondirectory.conf: %s en la línea %d"
 
 #: include/class_config.inc:162 include/class_config.inc:300
-#: include/class_config.inc:1001 include/class_config.inc:1014
-#: include/functions.inc:660 include/class_timezone.inc:51
+#: include/class_config.inc:985 include/class_config.inc:998
+#: include/functions.inc:663 include/class_timezone.inc:51
 #: include/password-methods/class_password-methods-sha.inc:71
 #: include/password-methods/class_password-methods-ssha.inc:75
 #: include/password-methods/class_password-methods-ssha.inc:91
@@ -2262,16 +2263,16 @@ msgid ""
 msgstr ""
 
 #: include/class_config.inc:337 include/class_ldap.inc:917
-#: include/class_ldap.inc:1371 include/functions.inc:523
-#: include/functions.inc:675 include/functions.inc:722
-#: include/functions.inc:783 include/functions.inc:838
-#: include/functions.inc:2965 include/simpleplugin/class_simplePlugin.inc:545
+#: include/class_ldap.inc:1371 include/functions.inc:526
+#: include/functions.inc:678 include/functions.inc:725
+#: include/functions.inc:786 include/functions.inc:841
+#: include/functions.inc:2985 include/simpleplugin/class_simplePlugin.inc:545
 #: include/simpleplugin/class_attribute.inc:2895
-#: include/password-methods/class_password-methods.inc:196
+#: include/password-methods/class_password-methods.inc:199
 #: include/class_SnapshotHandler.inc:50 include/class_SnapshotHandler.inc:244
 #: include/class_SnapshotHandler.inc:277 include/class_SnapshotHandler.inc:292
 #: include/class_SnapshotHandler.inc:422 include/class_SnapshotHandler.inc:425
-#: html/index.php:364 html/class_passwordRecovery.inc:497
+#: html/index.php:360 html/class_passwordRecovery.inc:497
 #: setup/class_setupStep_Migrate.inc:451
 #: setup/class_setupStep_Migrate.inc:1130
 msgid "LDAP error"
@@ -2286,25 +2287,25 @@ msgstr "No se puede conectar a LDAP: Por favor consulte con el administrador de
 msgid "The selected mail method (class %s) is not available"
 msgstr ""
 
-#: include/class_config.inc:1002
+#: include/class_config.inc:986
 #, php-format
 msgid ""
 "The snapshot functionality is enabled, but the required variable '%s' is not"
 " set."
 msgstr "La funcionalidad de instancias esta activa, pero el valor requerido '%s' no está activo."
 
-#: include/class_config.inc:1015
+#: include/class_config.inc:999
 #, php-format
 msgid ""
 "The snapshot functionality is enabled, but the required compression module "
 "is missing. Please install '%s'."
 msgstr "La funcionalidad de instancias esta activa, pero no se encuentra el módulo de compresión requerido. Por favor instale '%s'."
 
-#: include/class_config.inc:1120
+#: include/class_config.inc:1104
 msgid "All categories"
 msgstr "Todas las categorías"
 
-#: include/class_config.inc:1247
+#: include/class_config.inc:1231
 msgid "My account"
 msgstr "Mi cuenta"
 
@@ -2318,10 +2319,10 @@ msgid "LDAP performance is poor: last query took about %.2fs!"
 msgstr "El rendimiento LDAP es bajo: ¡la última consulta tardó sobre %.2fs!"
 
 #: include/class_ldap.inc:868 include/class_ldap.inc:904
-#: include/functions.inc:565 include/functions.inc:650
-#: include/functions.inc:770 include/functions.inc:1189
-#: include/functions.inc:2272 include/functions.inc:2314
-#: include/functions.inc:2343 include/class_session.inc:50
+#: include/functions.inc:568 include/functions.inc:653
+#: include/functions.inc:773 include/functions.inc:1192
+#: include/functions.inc:2275 include/functions.inc:2317
+#: include/functions.inc:2346 include/class_session.inc:50
 #: include/class_session.inc:87 include/class_session.inc:125
 #: include/class_log.inc:96 include/class_acl.inc:118
 msgid "Internal error"
@@ -2947,7 +2948,7 @@ msgid ""
 "Fatal error: cannot instantiate class '%s' - try running '%s' to fix this"
 msgstr "Error fatal: no se puede instanciar la clase '%s' - intente solucionarlo ejecutando '%s'"
 
-#: include/functions.inc:493 include/functions.inc:3263
+#: include/functions.inc:496 include/functions.inc:3294
 #: include/class_xml.inc:61 include/simpleplugin/class_simplePlugin.inc:263
 #: include/simpleplugin/class_simplePlugin.inc:268
 #: include/simpleplugin/class_simplePlugin.inc:280
@@ -2955,246 +2956,246 @@ msgstr "Error fatal: no se puede instanciar la clase '%s' - intente solucionarlo
 msgid "Fatal error"
 msgstr "Error fatal"
 
-#: include/functions.inc:494
+#: include/functions.inc:497
 #, php-format
 msgid "FATAL: Error when connecting the LDAP. Server said '%s'."
 msgstr "FATAL: Ha habido un error conectando a LDAP. El servidor comunicó '%s'."
 
-#: include/functions.inc:565
+#: include/functions.inc:568
 msgid ""
 "Login (uid) is not unique inside the LDAP tree. Please contact your "
 "administrator."
 msgstr ""
 
-#: include/functions.inc:598
+#: include/functions.inc:601
 msgid "Authentication error"
 msgstr "Error de Autenticación"
 
-#: include/functions.inc:599
+#: include/functions.inc:602
 msgid ""
 "It seems your user password has expired. Please use <a "
 "href=\"recovery.php\">password recovery</a> to change it."
 msgstr ""
 
-#: include/functions.inc:650 include/functions.inc:770
+#: include/functions.inc:653 include/functions.inc:773
 msgid "Error while adding a lock. Contact the developers!"
 msgstr "Ha ocurrido un problema al añadir un bloqueo. ¡Contacte con los desarrolladores!"
 
-#: include/functions.inc:660
+#: include/functions.inc:663
 #, php-format
 msgid ""
 "Cannot create locking information in LDAP tree. Please contact your "
 "administrator!"
 msgstr "No puedo crear información de bloqueos en el árbol LDAP. ¡Por favor contacte con su Administrador!"
 
-#: include/functions.inc:660
+#: include/functions.inc:663
 #, php-format
 msgid "LDAP server returned: %s"
 msgstr "El servidor LDAP devolvio: %s"
 
-#: include/functions.inc:791
+#: include/functions.inc:794
 msgid ""
 "Found multiple locks for object to be locked. This should not happen - "
 "cleaning up multiple references."
 msgstr "Se han encontrado varios bloqueos para un objeto que iba a ser bloqueado. Esto no debería ocurrir - limpiando referencias multiples."
 
-#: include/functions.inc:1109
+#: include/functions.inc:1112
 #, php-format
 msgid "The size limit of %d entries is exceed!"
 msgstr "¡El límite máximo de %d entradas se ha sobrepasado!"
 
-#: include/functions.inc:1111
+#: include/functions.inc:1114
 #, php-format
 msgid ""
 "Set the new size limit to %s and show me this message if the limit still "
 "exceeds"
 msgstr "Introduzca un nuevo límite máximo a %s y se volvera a mostrar este mensaje si se supera el límite máximo"
 
-#: include/functions.inc:1128
+#: include/functions.inc:1131
 msgid "Configure"
 msgstr "Configurar"
 
-#: include/functions.inc:1133
+#: include/functions.inc:1136
 msgid "incomplete"
 msgstr "incompleto"
 
-#: include/functions.inc:1538
+#: include/functions.inc:1541
 msgid "Continue anyway"
 msgstr "Continuar de cualquier manera"
 
-#: include/functions.inc:1540
+#: include/functions.inc:1543
 msgid "Edit anyway"
 msgstr "Editar de cualquier manera"
 
-#: include/functions.inc:1542
+#: include/functions.inc:1545
 #, php-format
 msgid "You're going to edit the LDAP entry/entries %s"
 msgstr "Has decidido editar las siguientes entradas LDAP %s"
 
-#: include/functions.inc:1796
+#: include/functions.inc:1799
 msgid "Entries per page"
 msgstr "Entradas por página"
 
-#: include/functions.inc:1827 include/class_filter.inc:353
+#: include/functions.inc:1830 include/class_filter.inc:353
 msgid "Apply filter"
 msgstr "Aplicar filtro"
 
-#: include/functions.inc:2095
+#: include/functions.inc:2098
 #, php-format
 msgid "%sB"
 msgstr ""
 
-#: include/functions.inc:2096
+#: include/functions.inc:2099
 #, php-format
 msgid "%sKiB"
 msgstr ""
 
-#: include/functions.inc:2097
+#: include/functions.inc:2100
 #, php-format
 msgid "%sMiB"
 msgstr ""
 
-#: include/functions.inc:2098
+#: include/functions.inc:2101
 #, php-format
 msgid "%sGiB"
 msgstr ""
 
-#: include/functions.inc:2099
+#: include/functions.inc:2102
 #, php-format
 msgid "%sTiB"
 msgstr ""
 
-#: include/functions.inc:2100
+#: include/functions.inc:2103
 #, php-format
 msgid "%sPiB"
 msgstr ""
 
-#: include/functions.inc:2101
+#: include/functions.inc:2104
 #, php-format
 msgid "%sEiB"
 msgstr ""
 
-#: include/functions.inc:2102
+#: include/functions.inc:2105
 #, php-format
 msgid "%sZiB"
 msgstr ""
 
-#: include/functions.inc:2103
+#: include/functions.inc:2106
 #, php-format
 msgid "%sYiB"
 msgstr ""
 
-#: include/functions.inc:2135 include/class_filter.inc:315
+#: include/functions.inc:2138 include/class_filter.inc:315
 msgid "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
 msgstr "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
 
-#: include/functions.inc:2272
+#: include/functions.inc:2275
 #, php-format
 msgid ""
 "File '%s' could not be deleted. Try fusiondirectory-setup --check-"
 "directories to fix permissions."
 msgstr ""
 
-#: include/functions.inc:2314
+#: include/functions.inc:2317
 msgid "Cannot write to revision file!"
 msgstr "¡No se puede escribir en el archivo de revisión!"
 
-#: include/functions.inc:2343
+#: include/functions.inc:2346
 msgid "Cannot read to revision file!"
 msgstr "No se puede leer el archivo de revisión!"
 
-#: include/functions.inc:2545
+#: include/functions.inc:2548
 msgid "'nextIdHook' is not available. Using default base!"
 msgstr ""
 
-#: include/functions.inc:2563
+#: include/functions.inc:2566
 msgid "LDAP warning"
 msgstr "Aviso LDAP"
 
-#: include/functions.inc:2563
+#: include/functions.inc:2566
 msgid "Cannot get schema information from server. No schema check possible!"
 msgstr "No puedo obtener información de esquemas del servidor. ¡No es posible comprobar los esquemas!"
 
-#: include/functions.inc:2581
+#: include/functions.inc:2584
 msgid ""
 "Used to lock currently edited entries to avoid multiple changes at the same "
 "time."
 msgstr "Usado para bloquear entradas editadas actualmente y así evitar múltiples cambios simultáneos."
 
-#: include/functions.inc:2593
+#: include/functions.inc:2596
 #, php-format
 msgid "Missing required object class '%s'!"
 msgstr "¡No se ha encontrado la clase de objeto necesaria '%s'!"
 
-#: include/functions.inc:2596
+#: include/functions.inc:2599
 #, php-format
 msgid "Missing optional object class '%s'!"
 msgstr "¡No se ha encontrado la clase de objeto opcional '%s'!"
 
-#: include/functions.inc:2600
+#: include/functions.inc:2603
 #, php-format
 msgid "Class(es) available"
 msgstr "Clase(s) disponibles"
 
-#: include/functions.inc:2620
+#: include/functions.inc:2623
 msgid ""
 "You have installed the mixed groups plugin, but your schema configuration "
 "does not support this."
 msgstr ""
 
-#: include/functions.inc:2621
+#: include/functions.inc:2624
 msgid ""
 "In order to use mixed groups the objectClass \"posixGroup\" must be "
 "AUXILIARY"
 msgstr ""
 
-#: include/functions.inc:2624
+#: include/functions.inc:2627
 msgid ""
 "Your schema is configured to support mixed groups, but this plugin is not "
 "present."
 msgstr ""
 
-#: include/functions.inc:2625
+#: include/functions.inc:2628
 msgid "The objectClass \"posixGroup\" must be STRUCTURAL"
 msgstr ""
 
-#: include/functions.inc:3075 include/functions.inc:3096
-#: include/functions.inc:3134 include/functions.inc:3146
-#: include/functions.inc:3150 include/functions.inc:3157
-#: include/functions.inc:3166
+#: include/functions.inc:3106 include/functions.inc:3127
+#: include/functions.inc:3165 include/functions.inc:3177
+#: include/functions.inc:3181 include/functions.inc:3188
+#: include/functions.inc:3197
 msgid "Cannot allocate a free ID:"
 msgstr "No se puede asignar un identificador (ID) libre:"
 
-#: include/functions.inc:3075
+#: include/functions.inc:3106
 msgid "unknown idAllocation method!"
 msgstr "¡método de asignación de id desconocido!"
 
-#: include/functions.inc:3096
+#: include/functions.inc:3127
 #, php-format
 msgid "%sPoolMin >= %sPoolMax!"
 msgstr "¡%sPoolMin >= %sPoolMax!"
 
-#: include/functions.inc:3126
+#: include/functions.inc:3157
 msgid "Cannot create sambaUnixIdPool entry!"
 msgstr "¡No se puede crear la entrada sambaUnixIdPool!"
 
-#: include/functions.inc:3134
+#: include/functions.inc:3165
 msgid "sambaUnixIdPool is not unique!"
 msgstr "¡sambaUnixIdPool no es único!"
 
-#: include/functions.inc:3146 include/functions.inc:3150
+#: include/functions.inc:3177 include/functions.inc:3181
 msgid "no ID available!"
 msgstr "¡No hay ID disponibles!"
 
-#: include/functions.inc:3166
+#: include/functions.inc:3197
 msgid "maximum tries exceeded!"
 msgstr "¡Excedido el número de intentos máximo!"
 
-#: include/functions.inc:3228
+#: include/functions.inc:3259
 msgid "Cannot allocate a free ID!"
 msgstr "¡No se puede asignar un identificador (ID) libre!"
 
-#: include/functions.inc:3264
+#: include/functions.inc:3295
 #, php-format
 msgid "Cannot locate file '%s' - please run '%s' to fix this"
 msgstr "No se puede encontrar el archivo '%s' - por favor ejecute '%s' para solucionarlo"
@@ -3597,6 +3598,11 @@ msgstr "No hay definiciones de extensión para iniciar '%s', por favor compruebe
 msgid "Delete process has been canceled by plugin '%s': %s"
 msgstr "El proceso de eliminación ha sido cancelado por la extensión '%s': %s"
 
+#: include/simpleplugin/class_simpleTabs.inc:405
+#, php-format
+msgid "Move from \"%s\" to \"%s\" failed"
+msgstr ""
+
 #: include/class_timezone.inc:52
 #, php-format
 msgid "The timezone setting \"%s\" in your configuration is not valid."
@@ -3659,63 +3665,63 @@ msgid ""
 "fusiondirectory-setup --check-config to fix this."
 msgstr ""
 
-#: html/index.php:175
+#: html/index.php:171
 msgid "Smarty error"
 msgstr "Error Smarty"
 
-#: html/index.php:177
+#: html/index.php:173
 #, php-format
 msgid "Directory \"%s\" specified as compile directory is not accessible!"
 msgstr ""
 
-#: html/index.php:212
+#: html/index.php:208
 msgid "Your FusionDirectory session has expired!"
 msgstr "Su sesión de FusionDirectory ha expirado!"
 
-#: html/index.php:215
+#: html/index.php:211
 msgid "Your IP has changed!"
 msgstr ""
 
-#: html/index.php:218
+#: html/index.php:214
 #, php-format
 msgid "Invalid plugin parameter \"%s\"!"
 msgstr ""
 
-#: html/index.php:221
+#: html/index.php:217
 msgid "No session found!"
 msgstr ""
 
-#: html/index.php:256
+#: html/index.php:252
 msgid "LDAP schema check reported errors:"
 msgstr ""
 
-#: html/index.php:282
+#: html/index.php:278
 msgid "Please specify a valid username!"
 msgstr "¡Por favor introduzca un nombre de usuario válido!"
 
-#: html/index.php:285
+#: html/index.php:281
 msgid "Please specify your password!"
 msgstr "¡Por favor introduzca una contraseña!"
 
-#: html/index.php:304
+#: html/index.php:300
 msgid "Please check the username/password combination."
 msgstr "Por favor compruebe la combinación nombre de usuario/contraseña"
 
-#: html/index.php:337
+#: html/index.php:333
 msgid "Account locked. Please contact your system administrator!"
 msgstr "Cuenta bloqueada. ¡Por favor contacte con su administrador de sistemas!"
 
-#: html/index.php:440
+#: html/index.php:436
 #, php-format
 msgid "CAS user \"%s\" could not be found in the LDAP"
 msgstr ""
 
-#: html/index.php:450
+#: html/index.php:446
 #, php-format
 msgid "CAS user \"%s\" match several users in the LDAP"
 msgstr ""
 
-#: html/index.php:485
+#: html/index.php:481
 msgid ""
 "Your browser has cookies disabled. Please enable cookies and reload this "
 "page before logging in!"
diff --git a/locale/es_CO/fusiondirectory.po b/locale/es_CO/fusiondirectory.po
index e50f6333869ce91d06964a42c99ae05a9167760d..522fc4ef7d7313ae3af460a5ec3b113804737a5f 100644
--- a/locale/es_CO/fusiondirectory.po
+++ b/locale/es_CO/fusiondirectory.po
@@ -8,8 +8,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory-109\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2016-01-04 11:54+0100\n"
-"PO-Revision-Date: 2016-01-04 10:52+0000\n"
+"POT-Creation-Date: 2016-01-22 11:26+0100\n"
+"PO-Revision-Date: 2016-01-22 10:24+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n"
 "Language-Team: Spanish (Colombia) (http://www.transifex.com/fusiondirectory/FusionDirectory-109/language/es_CO/)\n"
 "MIME-Version: 1.0\n"
@@ -96,7 +96,7 @@ msgstr "Fax"
 
 #: plugins/admin/groups/class_roleGeneric.inc:78
 #: plugins/admin/users/class_userManagement.inc:42
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:29
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:27
 #: setup/class_setupStep_Migrate.inc:871
 msgid "Users"
 msgstr "Usuarios"
@@ -205,10 +205,10 @@ 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."
 
 #: plugins/admin/groups/class_group.inc:181
-#: plugins/personal/posix/class_posixAccount.inc:458 include/functions.inc:791
-#: include/functions.inc:2545 include/class_xml.inc:55
+#: plugins/personal/posix/class_posixAccount.inc:458 include/functions.inc:794
+#: include/functions.inc:2548 include/class_xml.inc:55
 #: include/simpleplugin/class_simpleTabs.inc:325 html/index.php:56
-#: html/index.php:62 html/index.php:485 html/class_passwordRecovery.inc:378
+#: html/index.php:62 html/index.php:481 html/class_passwordRecovery.inc:378
 #: setup/class_setupStep_Migrate.inc:572
 #: setup/class_setupStep_Migrate.inc:1083
 #: setup/class_setupStep_Migrate.inc:1202
@@ -251,7 +251,7 @@ msgstr "Objetos miembro"
 msgid "Objects member of this group"
 msgstr "Objetos miembro de este grupo"
 
-#: plugins/admin/groups/class_ogroup.inc:317
+#: plugins/admin/groups/class_ogroup.inc:318
 msgid ""
 "Putting both workstations and terminals in the same group is not allowed"
 msgstr "Alojar estaciones de trabajo y terminales en el mismo grupo no está permitido."
@@ -874,19 +874,19 @@ msgstr "Reportes"
 msgid "Statistics"
 msgstr "Estadísticas"
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:30
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:28
 msgid "Statistics about users"
 msgstr "Estadísticas de los usuarios"
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:41
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:39
 msgid "Users statistics"
 msgstr "Estadísticas de usuario"
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:46
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:44
 msgid "Groups statistics"
 msgstr "Estadísticas de los grupos"
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:51
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:49
 #: plugins/addons/dashboard/users_accounts.tpl.c:8
 msgid "Expired accounts"
 msgstr "Cuentas expiradas"
@@ -2107,11 +2107,11 @@ msgstr "Seleccionar todo"
 #: include/class_config.inc:479 include/class_msgPool.inc:215
 #: include/class_msgPool.inc:235 include/class_msgPool.inc:265
 #: include/class_msgPool.inc:682 include/class_msgPool.inc:713
-#: include/class_msgPool.inc:740 include/functions.inc:3075
-#: include/functions.inc:3096 include/functions.inc:3126
-#: include/functions.inc:3134 include/functions.inc:3146
-#: include/functions.inc:3150 include/functions.inc:3157
-#: include/functions.inc:3166 include/functions.inc:3228
+#: include/class_msgPool.inc:740 include/functions.inc:3106
+#: include/functions.inc:3127 include/functions.inc:3157
+#: include/functions.inc:3165 include/functions.inc:3177
+#: include/functions.inc:3181 include/functions.inc:3188
+#: include/functions.inc:3197 include/functions.inc:3259
 #: include/class_msg_dialog.inc:128 include/class_xml.inc:58
 #: include/class_plugin.inc:1663 include/class_CopyPasteHandler.inc:278
 #: include/simpleplugin/class_dialogAttributes.inc:733
@@ -2122,11 +2122,12 @@ msgstr "Seleccionar todo"
 #: include/simpleplugin/class_attribute.inc:1877
 #: include/simpleplugin/class_attribute.inc:1879
 #: include/simpleplugin/class_simpleTabs.inc:90
+#: include/simpleplugin/class_simpleTabs.inc:405
 #: include/password-methods/class_password-methods-sasl.inc:60
 #: include/password-methods/class_password-methods-sasl.inc:86
-#: include/password-methods/class_password-methods.inc:434
-#: include/password-methods/class_password-methods.inc:444
-#: include/class_SnapshotHandler.inc:415 html/index.php:438 html/index.php:448
+#: include/password-methods/class_password-methods.inc:437
+#: include/password-methods/class_password-methods.inc:447
+#: include/class_SnapshotHandler.inc:415 html/index.php:434 html/index.php:444
 #: setup/class_setupStep_Migrate.inc:935
 #: ihtml/themes/default/msg_dialog.tpl.c:2 setup/setup_checks.tpl.c:5
 msgid "Error"
@@ -2245,8 +2246,8 @@ msgid "XML error in fusiondirectory.conf: %s at line %d"
 msgstr "Error XML en fusiondirectory.conf: %s en la línea %d"
 
 #: include/class_config.inc:162 include/class_config.inc:300
-#: include/class_config.inc:1001 include/class_config.inc:1014
-#: include/functions.inc:660 include/class_timezone.inc:51
+#: include/class_config.inc:985 include/class_config.inc:998
+#: include/functions.inc:663 include/class_timezone.inc:51
 #: include/password-methods/class_password-methods-sha.inc:71
 #: include/password-methods/class_password-methods-ssha.inc:75
 #: include/password-methods/class_password-methods-ssha.inc:91
@@ -2263,16 +2264,16 @@ msgid ""
 msgstr "Parece que usted intenta decodificar algo que no está codificado: %s<br/>\\nPor favor revise que no esté usando el archivo fusiondirectory.secrets mientras sus contraseñas no están encriptadas."
 
 #: include/class_config.inc:337 include/class_ldap.inc:917
-#: include/class_ldap.inc:1371 include/functions.inc:523
-#: include/functions.inc:675 include/functions.inc:722
-#: include/functions.inc:783 include/functions.inc:838
-#: include/functions.inc:2965 include/simpleplugin/class_simplePlugin.inc:545
+#: include/class_ldap.inc:1371 include/functions.inc:526
+#: include/functions.inc:678 include/functions.inc:725
+#: include/functions.inc:786 include/functions.inc:841
+#: include/functions.inc:2985 include/simpleplugin/class_simplePlugin.inc:545
 #: include/simpleplugin/class_attribute.inc:2895
-#: include/password-methods/class_password-methods.inc:196
+#: include/password-methods/class_password-methods.inc:199
 #: include/class_SnapshotHandler.inc:50 include/class_SnapshotHandler.inc:244
 #: include/class_SnapshotHandler.inc:277 include/class_SnapshotHandler.inc:292
 #: include/class_SnapshotHandler.inc:422 include/class_SnapshotHandler.inc:425
-#: html/index.php:364 html/class_passwordRecovery.inc:497
+#: html/index.php:360 html/class_passwordRecovery.inc:497
 #: setup/class_setupStep_Migrate.inc:451
 #: setup/class_setupStep_Migrate.inc:1130
 msgid "LDAP error"
@@ -2287,25 +2288,25 @@ msgstr "No se puede contactar a LDAP. Por favor contacte al adminsitrador del si
 msgid "The selected mail method (class %s) is not available"
 msgstr "El método de mail seleccionado (class%s) no está disponible."
 
-#: include/class_config.inc:1002
+#: include/class_config.inc:986
 #, php-format
 msgid ""
 "The snapshot functionality is enabled, but the required variable '%s' is not"
 " set."
 msgstr "La característica 'snapshot' está habilitada, pero la variable '%s' requerida no está configurada."
 
-#: include/class_config.inc:1015
+#: include/class_config.inc:999
 #, php-format
 msgid ""
 "The snapshot functionality is enabled, but the required compression module "
 "is missing. Please install '%s'."
 msgstr "La funcionalidad de 'snapshot' está habilitada, pero el módulo de compresión requerido no se encuentra. Por favor instale '%s'."
 
-#: include/class_config.inc:1120
+#: include/class_config.inc:1104
 msgid "All categories"
 msgstr "Todas las categorías"
 
-#: include/class_config.inc:1247
+#: include/class_config.inc:1231
 msgid "My account"
 msgstr "Mi cuenta"
 
@@ -2319,10 +2320,10 @@ msgid "LDAP performance is poor: last query took about %.2fs!"
 msgstr "LDAP tiene un desempeño lento: su última consulta tomó %.2fs!"
 
 #: include/class_ldap.inc:868 include/class_ldap.inc:904
-#: include/functions.inc:565 include/functions.inc:650
-#: include/functions.inc:770 include/functions.inc:1189
-#: include/functions.inc:2272 include/functions.inc:2314
-#: include/functions.inc:2343 include/class_session.inc:50
+#: include/functions.inc:568 include/functions.inc:653
+#: include/functions.inc:773 include/functions.inc:1192
+#: include/functions.inc:2275 include/functions.inc:2317
+#: include/functions.inc:2346 include/class_session.inc:50
 #: include/class_session.inc:87 include/class_session.inc:125
 #: include/class_log.inc:96 include/class_acl.inc:118
 msgid "Internal error"
@@ -2948,7 +2949,7 @@ msgid ""
 "Fatal error: cannot instantiate class '%s' - try running '%s' to fix this"
 msgstr "Error fatal: No se puede ejemplificar la clase '%s' - intente ejecutar '%s' para arreglar esto."
 
-#: include/functions.inc:493 include/functions.inc:3263
+#: include/functions.inc:496 include/functions.inc:3294
 #: include/class_xml.inc:61 include/simpleplugin/class_simplePlugin.inc:263
 #: include/simpleplugin/class_simplePlugin.inc:268
 #: include/simpleplugin/class_simplePlugin.inc:280
@@ -2956,246 +2957,246 @@ msgstr "Error fatal: No se puede ejemplificar la clase '%s' - intente ejecutar '
 msgid "Fatal error"
 msgstr "Error fatal"
 
-#: include/functions.inc:494
+#: include/functions.inc:497
 #, php-format
 msgid "FATAL: Error when connecting the LDAP. Server said '%s'."
 msgstr "FATAL: Error conectándose a LDAP. El servidor dijo: '%s'"
 
-#: include/functions.inc:565
+#: include/functions.inc:568
 msgid ""
 "Login (uid) is not unique inside the LDAP tree. Please contact your "
 "administrator."
 msgstr "¡Login (uid) no es un valor único en el árbol LDAP!. Por favor contacte a su administrador."
 
-#: include/functions.inc:598
+#: include/functions.inc:601
 msgid "Authentication error"
 msgstr "Error de autenticación"
 
-#: include/functions.inc:599
+#: include/functions.inc:602
 msgid ""
 "It seems your user password has expired. Please use <a "
 "href=\"recovery.php\">password recovery</a> to change it."
 msgstr "Al parecer tu contraseña expiró. Por favor acceda a<a href=\"recovery.php\">Recuperar contraseña</a> y cámbiela."
 
-#: include/functions.inc:650 include/functions.inc:770
+#: include/functions.inc:653 include/functions.inc:773
 msgid "Error while adding a lock. Contact the developers!"
 msgstr "Error mientras agregando un bloqueo. ¡Contacte a los desarrolladores!"
 
-#: include/functions.inc:660
+#: include/functions.inc:663
 #, php-format
 msgid ""
 "Cannot create locking information in LDAP tree. Please contact your "
 "administrator!"
 msgstr "No se puede crear un bloqueo de información en el árbol de 'LDAP'. ¡Por favor contacte a su administrador!"
 
-#: include/functions.inc:660
+#: include/functions.inc:663
 #, php-format
 msgid "LDAP server returned: %s"
 msgstr "El servidor LDAP respondió: %s"
 
-#: include/functions.inc:791
+#: include/functions.inc:794
 msgid ""
 "Found multiple locks for object to be locked. This should not happen - "
 "cleaning up multiple references."
 msgstr "Se encontraron varios 'locks' en el objeto lo cual impide bloquearlo. Esto no debería suceder - borrando varias referencias."
 
-#: include/functions.inc:1109
+#: include/functions.inc:1112
 #, php-format
 msgid "The size limit of %d entries is exceed!"
 msgstr ""
 
-#: include/functions.inc:1111
+#: include/functions.inc:1114
 #, php-format
 msgid ""
 "Set the new size limit to %s and show me this message if the limit still "
 "exceeds"
 msgstr ""
 
-#: include/functions.inc:1128
+#: include/functions.inc:1131
 msgid "Configure"
 msgstr "Configurar"
 
-#: include/functions.inc:1133
+#: include/functions.inc:1136
 msgid "incomplete"
 msgstr "incompleto"
 
-#: include/functions.inc:1538
+#: include/functions.inc:1541
 msgid "Continue anyway"
 msgstr "Continuar de todos modos"
 
-#: include/functions.inc:1540
+#: include/functions.inc:1543
 msgid "Edit anyway"
 msgstr "Editar de todos modos"
 
-#: include/functions.inc:1542
+#: include/functions.inc:1545
 #, php-format
 msgid "You're going to edit the LDAP entry/entries %s"
 msgstr "Usted está a punto de editar las entradas de LDAP: %s"
 
-#: include/functions.inc:1796
+#: include/functions.inc:1799
 msgid "Entries per page"
 msgstr "Resultados por página"
 
-#: include/functions.inc:1827 include/class_filter.inc:353
+#: include/functions.inc:1830 include/class_filter.inc:353
 msgid "Apply filter"
 msgstr "Aplicar filtro"
 
-#: include/functions.inc:2095
+#: include/functions.inc:2098
 #, php-format
 msgid "%sB"
 msgstr "%sB"
 
-#: include/functions.inc:2096
+#: include/functions.inc:2099
 #, php-format
 msgid "%sKiB"
 msgstr "%sKiB"
 
-#: include/functions.inc:2097
+#: include/functions.inc:2100
 #, php-format
 msgid "%sMiB"
 msgstr "%sMiB"
 
-#: include/functions.inc:2098
+#: include/functions.inc:2101
 #, php-format
 msgid "%sGiB"
 msgstr "%sGiB"
 
-#: include/functions.inc:2099
+#: include/functions.inc:2102
 #, php-format
 msgid "%sTiB"
 msgstr "%sTiB"
 
-#: include/functions.inc:2100
+#: include/functions.inc:2103
 #, php-format
 msgid "%sPiB"
 msgstr "%sPiB"
 
-#: include/functions.inc:2101
+#: include/functions.inc:2104
 #, php-format
 msgid "%sEiB"
 msgstr "%sEiB"
 
-#: include/functions.inc:2102
+#: include/functions.inc:2105
 #, php-format
 msgid "%sZiB"
 msgstr "%sZiB"
 
-#: include/functions.inc:2103
+#: include/functions.inc:2106
 #, php-format
 msgid "%sYiB"
 msgstr "%sYiB"
 
-#: include/functions.inc:2135 include/class_filter.inc:315
+#: include/functions.inc:2138 include/class_filter.inc:315
 msgid "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
 msgstr "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
 
-#: include/functions.inc:2272
+#: include/functions.inc:2275
 #, php-format
 msgid ""
 "File '%s' could not be deleted. Try fusiondirectory-setup --check-"
 "directories to fix permissions."
 msgstr "El archivo '%s' no se puede borrar. Intente ejecutar fusiondirectory-setup-check-directories para arreglar los permisos."
 
-#: include/functions.inc:2314
+#: include/functions.inc:2317
 msgid "Cannot write to revision file!"
 msgstr ""
 
-#: include/functions.inc:2343
+#: include/functions.inc:2346
 msgid "Cannot read to revision file!"
 msgstr ""
 
-#: include/functions.inc:2545
+#: include/functions.inc:2548
 msgid "'nextIdHook' is not available. Using default base!"
 msgstr ""
 
-#: include/functions.inc:2563
+#: include/functions.inc:2566
 msgid "LDAP warning"
 msgstr "LDAP - Advertencia"
 
-#: include/functions.inc:2563
+#: include/functions.inc:2566
 msgid "Cannot get schema information from server. No schema check possible!"
 msgstr "No se puede traer información del 'schema' desde el servidor. ¡No se puede validar el schema'"
 
-#: include/functions.inc:2581
+#: include/functions.inc:2584
 msgid ""
 "Used to lock currently edited entries to avoid multiple changes at the same "
 "time."
 msgstr ""
 
-#: include/functions.inc:2593
+#: include/functions.inc:2596
 #, php-format
 msgid "Missing required object class '%s'!"
 msgstr ""
 
-#: include/functions.inc:2596
+#: include/functions.inc:2599
 #, php-format
 msgid "Missing optional object class '%s'!"
 msgstr ""
 
-#: include/functions.inc:2600
+#: include/functions.inc:2603
 #, php-format
 msgid "Class(es) available"
 msgstr ""
 
-#: include/functions.inc:2620
+#: include/functions.inc:2623
 msgid ""
 "You have installed the mixed groups plugin, but your schema configuration "
 "does not support this."
 msgstr "Usted ha instalado el plugin 'Mixed Groups', pero la configuración de su esquema no lo soporta."
 
-#: include/functions.inc:2621
+#: include/functions.inc:2624
 msgid ""
 "In order to use mixed groups the objectClass \"posixGroup\" must be "
 "AUXILIARY"
 msgstr ""
 
-#: include/functions.inc:2624
+#: include/functions.inc:2627
 msgid ""
 "Your schema is configured to support mixed groups, but this plugin is not "
 "present."
 msgstr "Su esquema tiene configurado soporte para 'Mixed Groups', pero este plugin no está presente."
 
-#: include/functions.inc:2625
+#: include/functions.inc:2628
 msgid "The objectClass \"posixGroup\" must be STRUCTURAL"
 msgstr ""
 
-#: include/functions.inc:3075 include/functions.inc:3096
-#: include/functions.inc:3134 include/functions.inc:3146
-#: include/functions.inc:3150 include/functions.inc:3157
-#: include/functions.inc:3166
+#: include/functions.inc:3106 include/functions.inc:3127
+#: include/functions.inc:3165 include/functions.inc:3177
+#: include/functions.inc:3181 include/functions.inc:3188
+#: include/functions.inc:3197
 msgid "Cannot allocate a free ID:"
 msgstr ""
 
-#: include/functions.inc:3075
+#: include/functions.inc:3106
 msgid "unknown idAllocation method!"
 msgstr "¡método 'idAllocation' desconocido!"
 
-#: include/functions.inc:3096
+#: include/functions.inc:3127
 #, php-format
 msgid "%sPoolMin >= %sPoolMax!"
 msgstr "%sPoolMin >= %sPoolMax!"
 
-#: include/functions.inc:3126
+#: include/functions.inc:3157
 msgid "Cannot create sambaUnixIdPool entry!"
 msgstr "¡No se puede crear la entrada sambaUnixIdPool!"
 
-#: include/functions.inc:3134
+#: include/functions.inc:3165
 msgid "sambaUnixIdPool is not unique!"
 msgstr "!sambaUnixIdPool no es un valor único!"
 
-#: include/functions.inc:3146 include/functions.inc:3150
+#: include/functions.inc:3177 include/functions.inc:3181
 msgid "no ID available!"
 msgstr ""
 
-#: include/functions.inc:3166
+#: include/functions.inc:3197
 msgid "maximum tries exceeded!"
 msgstr ""
 
-#: include/functions.inc:3228
+#: include/functions.inc:3259
 msgid "Cannot allocate a free ID!"
 msgstr ""
 
-#: include/functions.inc:3264
+#: include/functions.inc:3295
 #, php-format
 msgid "Cannot locate file '%s' - please run '%s' to fix this"
 msgstr "No se encuentra el archivo '%s' - por favor ejecute '%s' para  arreglar esto."
@@ -3598,6 +3599,11 @@ msgstr "No se encontraron descripciones para iniciar '%s', por favor revise su a
 msgid "Delete process has been canceled by plugin '%s': %s"
 msgstr "El proceso de borrado fue cancelado por el plugin '%s': %s"
 
+#: include/simpleplugin/class_simpleTabs.inc:405
+#, php-format
+msgid "Move from \"%s\" to \"%s\" failed"
+msgstr ""
+
 #: include/class_timezone.inc:52
 #, php-format
 msgid "The timezone setting \"%s\" in your configuration is not valid."
@@ -3660,63 +3666,63 @@ msgid ""
 "fusiondirectory-setup --check-config to fix this."
 msgstr "El archivo de configuración de FusionDirectory  %s/%s no tiene privilegios de lectura. Por favor ejecute \"fusiondirectory-setup --check-config\" para corregir éste problema."
 
-#: html/index.php:175
+#: html/index.php:171
 msgid "Smarty error"
 msgstr "Error en Smarty"
 
-#: html/index.php:177
+#: html/index.php:173
 #, php-format
 msgid "Directory \"%s\" specified as compile directory is not accessible!"
 msgstr ""
 
-#: html/index.php:212
+#: html/index.php:208
 msgid "Your FusionDirectory session has expired!"
 msgstr "¡Su sesión de FusionDirectory ha expirado!"
 
-#: html/index.php:215
+#: html/index.php:211
 msgid "Your IP has changed!"
 msgstr "¡Tu IP ha cambiado!"
 
-#: html/index.php:218
+#: html/index.php:214
 #, php-format
 msgid "Invalid plugin parameter \"%s\"!"
 msgstr "¡Parámetro \"%s\" de plugin inválido!"
 
-#: html/index.php:221
+#: html/index.php:217
 msgid "No session found!"
 msgstr "¡No se encuentra la sesión!"
 
-#: html/index.php:256
+#: html/index.php:252
 msgid "LDAP schema check reported errors:"
 msgstr ""
 
-#: html/index.php:282
+#: html/index.php:278
 msgid "Please specify a valid username!"
 msgstr "¡Por favor especifique un nombre de usuario válido!"
 
-#: html/index.php:285
+#: html/index.php:281
 msgid "Please specify your password!"
 msgstr "¡Por favor especifique su contraseña!"
 
-#: html/index.php:304
+#: html/index.php:300
 msgid "Please check the username/password combination."
 msgstr "Por favor verifique su combinación de usuario/contraseña"
 
-#: html/index.php:337
+#: html/index.php:333
 msgid "Account locked. Please contact your system administrator!"
 msgstr "Cuenta bloqueada. ¡Por favor contacte a su administrador!"
 
-#: html/index.php:440
+#: html/index.php:436
 #, php-format
 msgid "CAS user \"%s\" could not be found in the LDAP"
 msgstr ""
 
-#: html/index.php:450
+#: html/index.php:446
 #, php-format
 msgid "CAS user \"%s\" match several users in the LDAP"
 msgstr ""
 
-#: html/index.php:485
+#: html/index.php:481
 msgid ""
 "Your browser has cookies disabled. Please enable cookies and reload this "
 "page before logging in!"
diff --git a/locale/es_VE/fusiondirectory.po b/locale/es_VE/fusiondirectory.po
index 8d2ff15c6c6d61758f75faa3fa98a4bcfaf8cd9e..3ac290a8329e972edf78ad24201583479d937a19 100644
--- a/locale/es_VE/fusiondirectory.po
+++ b/locale/es_VE/fusiondirectory.po
@@ -7,8 +7,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory-109\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2016-01-04 11:54+0100\n"
-"PO-Revision-Date: 2016-01-04 10:52+0000\n"
+"POT-Creation-Date: 2016-01-22 11:26+0100\n"
+"PO-Revision-Date: 2016-01-22 10:24+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n"
 "Language-Team: Spanish (Venezuela) (http://www.transifex.com/fusiondirectory/FusionDirectory-109/language/es_VE/)\n"
 "MIME-Version: 1.0\n"
@@ -95,7 +95,7 @@ msgstr "Número de Fax"
 
 #: plugins/admin/groups/class_roleGeneric.inc:78
 #: plugins/admin/users/class_userManagement.inc:42
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:29
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:27
 #: setup/class_setupStep_Migrate.inc:871
 msgid "Users"
 msgstr "Usuarios"
@@ -204,10 +204,10 @@ msgid "Only allow this group to connect to this list of hosts"
 msgstr ""
 
 #: plugins/admin/groups/class_group.inc:181
-#: plugins/personal/posix/class_posixAccount.inc:458 include/functions.inc:791
-#: include/functions.inc:2545 include/class_xml.inc:55
+#: plugins/personal/posix/class_posixAccount.inc:458 include/functions.inc:794
+#: include/functions.inc:2548 include/class_xml.inc:55
 #: include/simpleplugin/class_simpleTabs.inc:325 html/index.php:56
-#: html/index.php:62 html/index.php:485 html/class_passwordRecovery.inc:378
+#: html/index.php:62 html/index.php:481 html/class_passwordRecovery.inc:378
 #: setup/class_setupStep_Migrate.inc:572
 #: setup/class_setupStep_Migrate.inc:1083
 #: setup/class_setupStep_Migrate.inc:1202
@@ -250,7 +250,7 @@ msgstr "Objetos miembros"
 msgid "Objects member of this group"
 msgstr ""
 
-#: plugins/admin/groups/class_ogroup.inc:317
+#: plugins/admin/groups/class_ogroup.inc:318
 msgid ""
 "Putting both workstations and terminals in the same group is not allowed"
 msgstr ""
@@ -873,19 +873,19 @@ msgstr ""
 msgid "Statistics"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:30
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:28
 msgid "Statistics about users"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:41
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:39
 msgid "Users statistics"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:46
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:44
 msgid "Groups statistics"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:51
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:49
 #: plugins/addons/dashboard/users_accounts.tpl.c:8
 msgid "Expired accounts"
 msgstr ""
@@ -2106,11 +2106,11 @@ msgstr "Seleccione todos"
 #: include/class_config.inc:479 include/class_msgPool.inc:215
 #: include/class_msgPool.inc:235 include/class_msgPool.inc:265
 #: include/class_msgPool.inc:682 include/class_msgPool.inc:713
-#: include/class_msgPool.inc:740 include/functions.inc:3075
-#: include/functions.inc:3096 include/functions.inc:3126
-#: include/functions.inc:3134 include/functions.inc:3146
-#: include/functions.inc:3150 include/functions.inc:3157
-#: include/functions.inc:3166 include/functions.inc:3228
+#: include/class_msgPool.inc:740 include/functions.inc:3106
+#: include/functions.inc:3127 include/functions.inc:3157
+#: include/functions.inc:3165 include/functions.inc:3177
+#: include/functions.inc:3181 include/functions.inc:3188
+#: include/functions.inc:3197 include/functions.inc:3259
 #: include/class_msg_dialog.inc:128 include/class_xml.inc:58
 #: include/class_plugin.inc:1663 include/class_CopyPasteHandler.inc:278
 #: include/simpleplugin/class_dialogAttributes.inc:733
@@ -2121,11 +2121,12 @@ msgstr "Seleccione todos"
 #: include/simpleplugin/class_attribute.inc:1877
 #: include/simpleplugin/class_attribute.inc:1879
 #: include/simpleplugin/class_simpleTabs.inc:90
+#: include/simpleplugin/class_simpleTabs.inc:405
 #: include/password-methods/class_password-methods-sasl.inc:60
 #: include/password-methods/class_password-methods-sasl.inc:86
-#: include/password-methods/class_password-methods.inc:434
-#: include/password-methods/class_password-methods.inc:444
-#: include/class_SnapshotHandler.inc:415 html/index.php:438 html/index.php:448
+#: include/password-methods/class_password-methods.inc:437
+#: include/password-methods/class_password-methods.inc:447
+#: include/class_SnapshotHandler.inc:415 html/index.php:434 html/index.php:444
 #: setup/class_setupStep_Migrate.inc:935
 #: ihtml/themes/default/msg_dialog.tpl.c:2 setup/setup_checks.tpl.c:5
 msgid "Error"
@@ -2244,8 +2245,8 @@ msgid "XML error in fusiondirectory.conf: %s at line %d"
 msgstr "Error XML en fusiondirectory.conf: %s en la línea %d"
 
 #: include/class_config.inc:162 include/class_config.inc:300
-#: include/class_config.inc:1001 include/class_config.inc:1014
-#: include/functions.inc:660 include/class_timezone.inc:51
+#: include/class_config.inc:985 include/class_config.inc:998
+#: include/functions.inc:663 include/class_timezone.inc:51
 #: include/password-methods/class_password-methods-sha.inc:71
 #: include/password-methods/class_password-methods-ssha.inc:75
 #: include/password-methods/class_password-methods-ssha.inc:91
@@ -2262,16 +2263,16 @@ msgid ""
 msgstr ""
 
 #: include/class_config.inc:337 include/class_ldap.inc:917
-#: include/class_ldap.inc:1371 include/functions.inc:523
-#: include/functions.inc:675 include/functions.inc:722
-#: include/functions.inc:783 include/functions.inc:838
-#: include/functions.inc:2965 include/simpleplugin/class_simplePlugin.inc:545
+#: include/class_ldap.inc:1371 include/functions.inc:526
+#: include/functions.inc:678 include/functions.inc:725
+#: include/functions.inc:786 include/functions.inc:841
+#: include/functions.inc:2985 include/simpleplugin/class_simplePlugin.inc:545
 #: include/simpleplugin/class_attribute.inc:2895
-#: include/password-methods/class_password-methods.inc:196
+#: include/password-methods/class_password-methods.inc:199
 #: include/class_SnapshotHandler.inc:50 include/class_SnapshotHandler.inc:244
 #: include/class_SnapshotHandler.inc:277 include/class_SnapshotHandler.inc:292
 #: include/class_SnapshotHandler.inc:422 include/class_SnapshotHandler.inc:425
-#: html/index.php:364 html/class_passwordRecovery.inc:497
+#: html/index.php:360 html/class_passwordRecovery.inc:497
 #: setup/class_setupStep_Migrate.inc:451
 #: setup/class_setupStep_Migrate.inc:1130
 msgid "LDAP error"
@@ -2286,25 +2287,25 @@ msgstr "No se puede conectar a LDAP: Por favor consulte con el administrador de
 msgid "The selected mail method (class %s) is not available"
 msgstr ""
 
-#: include/class_config.inc:1002
+#: include/class_config.inc:986
 #, php-format
 msgid ""
 "The snapshot functionality is enabled, but the required variable '%s' is not"
 " set."
 msgstr "La funcionalidad de instancias esta activa, pero el valor requerido '%s' no está activo."
 
-#: include/class_config.inc:1015
+#: include/class_config.inc:999
 #, php-format
 msgid ""
 "The snapshot functionality is enabled, but the required compression module "
 "is missing. Please install '%s'."
 msgstr "La funcionalidad de instancias esta activa, pero no se encuentra el módulo de compresión requerido. Por favor instale '%s'."
 
-#: include/class_config.inc:1120
+#: include/class_config.inc:1104
 msgid "All categories"
 msgstr "Todas las categorías"
 
-#: include/class_config.inc:1247
+#: include/class_config.inc:1231
 msgid "My account"
 msgstr "Mi cuenta"
 
@@ -2318,10 +2319,10 @@ msgid "LDAP performance is poor: last query took about %.2fs!"
 msgstr "El rendimiento LDAP es bajo: ¡la última consulta tardó sobre %.2fs!"
 
 #: include/class_ldap.inc:868 include/class_ldap.inc:904
-#: include/functions.inc:565 include/functions.inc:650
-#: include/functions.inc:770 include/functions.inc:1189
-#: include/functions.inc:2272 include/functions.inc:2314
-#: include/functions.inc:2343 include/class_session.inc:50
+#: include/functions.inc:568 include/functions.inc:653
+#: include/functions.inc:773 include/functions.inc:1192
+#: include/functions.inc:2275 include/functions.inc:2317
+#: include/functions.inc:2346 include/class_session.inc:50
 #: include/class_session.inc:87 include/class_session.inc:125
 #: include/class_log.inc:96 include/class_acl.inc:118
 msgid "Internal error"
@@ -2947,7 +2948,7 @@ msgid ""
 "Fatal error: cannot instantiate class '%s' - try running '%s' to fix this"
 msgstr "Error fatal: no se puede instanciar la clase '%s' - intente solucionarlo ejecutando '%s'"
 
-#: include/functions.inc:493 include/functions.inc:3263
+#: include/functions.inc:496 include/functions.inc:3294
 #: include/class_xml.inc:61 include/simpleplugin/class_simplePlugin.inc:263
 #: include/simpleplugin/class_simplePlugin.inc:268
 #: include/simpleplugin/class_simplePlugin.inc:280
@@ -2955,246 +2956,246 @@ msgstr "Error fatal: no se puede instanciar la clase '%s' - intente solucionarlo
 msgid "Fatal error"
 msgstr "Error fatal"
 
-#: include/functions.inc:494
+#: include/functions.inc:497
 #, php-format
 msgid "FATAL: Error when connecting the LDAP. Server said '%s'."
 msgstr "FATAL: Ha habido un error conectando a LDAP. El servidor comunicó '%s'."
 
-#: include/functions.inc:565
+#: include/functions.inc:568
 msgid ""
 "Login (uid) is not unique inside the LDAP tree. Please contact your "
 "administrator."
 msgstr ""
 
-#: include/functions.inc:598
+#: include/functions.inc:601
 msgid "Authentication error"
 msgstr "Error de Autenticación"
 
-#: include/functions.inc:599
+#: include/functions.inc:602
 msgid ""
 "It seems your user password has expired. Please use <a "
 "href=\"recovery.php\">password recovery</a> to change it."
 msgstr ""
 
-#: include/functions.inc:650 include/functions.inc:770
+#: include/functions.inc:653 include/functions.inc:773
 msgid "Error while adding a lock. Contact the developers!"
 msgstr "Ha ocurrido un problema al añadir un bloqueo. ¡Contacte con los desarrolladores!"
 
-#: include/functions.inc:660
+#: include/functions.inc:663
 #, php-format
 msgid ""
 "Cannot create locking information in LDAP tree. Please contact your "
 "administrator!"
 msgstr "No puedo crear información de bloqueos en el árbol LDAP. ¡Por favor contacte con su Administrador!"
 
-#: include/functions.inc:660
+#: include/functions.inc:663
 #, php-format
 msgid "LDAP server returned: %s"
 msgstr "El servidor LDAP devolvio: %s"
 
-#: include/functions.inc:791
+#: include/functions.inc:794
 msgid ""
 "Found multiple locks for object to be locked. This should not happen - "
 "cleaning up multiple references."
 msgstr "Se han encontrado varios bloqueos para un objeto que iba a ser bloqueado. Esto no debería ocurrir - limpiando referencias multiples."
 
-#: include/functions.inc:1109
+#: include/functions.inc:1112
 #, php-format
 msgid "The size limit of %d entries is exceed!"
 msgstr "¡El límite máximo de %d entradas se ha sobrepasado!"
 
-#: include/functions.inc:1111
+#: include/functions.inc:1114
 #, php-format
 msgid ""
 "Set the new size limit to %s and show me this message if the limit still "
 "exceeds"
 msgstr "Introduzca un nuevo límite máximo a %s y se volvera a mostrar este mensaje si se supera el límite máximo"
 
-#: include/functions.inc:1128
+#: include/functions.inc:1131
 msgid "Configure"
 msgstr "Configurar"
 
-#: include/functions.inc:1133
+#: include/functions.inc:1136
 msgid "incomplete"
 msgstr "incompleto"
 
-#: include/functions.inc:1538
+#: include/functions.inc:1541
 msgid "Continue anyway"
 msgstr "Continuar de cualquier manera"
 
-#: include/functions.inc:1540
+#: include/functions.inc:1543
 msgid "Edit anyway"
 msgstr "Editar de cualquier manera"
 
-#: include/functions.inc:1542
+#: include/functions.inc:1545
 #, php-format
 msgid "You're going to edit the LDAP entry/entries %s"
 msgstr "Has decidido editar las siguientes entradas LDAP %s"
 
-#: include/functions.inc:1796
+#: include/functions.inc:1799
 msgid "Entries per page"
 msgstr "Entradas por página"
 
-#: include/functions.inc:1827 include/class_filter.inc:353
+#: include/functions.inc:1830 include/class_filter.inc:353
 msgid "Apply filter"
 msgstr "Aplicar filtro"
 
-#: include/functions.inc:2095
+#: include/functions.inc:2098
 #, php-format
 msgid "%sB"
 msgstr ""
 
-#: include/functions.inc:2096
+#: include/functions.inc:2099
 #, php-format
 msgid "%sKiB"
 msgstr ""
 
-#: include/functions.inc:2097
+#: include/functions.inc:2100
 #, php-format
 msgid "%sMiB"
 msgstr ""
 
-#: include/functions.inc:2098
+#: include/functions.inc:2101
 #, php-format
 msgid "%sGiB"
 msgstr ""
 
-#: include/functions.inc:2099
+#: include/functions.inc:2102
 #, php-format
 msgid "%sTiB"
 msgstr ""
 
-#: include/functions.inc:2100
+#: include/functions.inc:2103
 #, php-format
 msgid "%sPiB"
 msgstr ""
 
-#: include/functions.inc:2101
+#: include/functions.inc:2104
 #, php-format
 msgid "%sEiB"
 msgstr ""
 
-#: include/functions.inc:2102
+#: include/functions.inc:2105
 #, php-format
 msgid "%sZiB"
 msgstr ""
 
-#: include/functions.inc:2103
+#: include/functions.inc:2106
 #, php-format
 msgid "%sYiB"
 msgstr ""
 
-#: include/functions.inc:2135 include/class_filter.inc:315
+#: include/functions.inc:2138 include/class_filter.inc:315
 msgid "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
 msgstr "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
 
-#: include/functions.inc:2272
+#: include/functions.inc:2275
 #, php-format
 msgid ""
 "File '%s' could not be deleted. Try fusiondirectory-setup --check-"
 "directories to fix permissions."
 msgstr ""
 
-#: include/functions.inc:2314
+#: include/functions.inc:2317
 msgid "Cannot write to revision file!"
 msgstr "¡No se puede escribir en el archivo de revisión!"
 
-#: include/functions.inc:2343
+#: include/functions.inc:2346
 msgid "Cannot read to revision file!"
 msgstr "No se puede leer el archivo de revisión!"
 
-#: include/functions.inc:2545
+#: include/functions.inc:2548
 msgid "'nextIdHook' is not available. Using default base!"
 msgstr ""
 
-#: include/functions.inc:2563
+#: include/functions.inc:2566
 msgid "LDAP warning"
 msgstr "Aviso LDAP"
 
-#: include/functions.inc:2563
+#: include/functions.inc:2566
 msgid "Cannot get schema information from server. No schema check possible!"
 msgstr "No puedo obtener información de esquemas del servidor. ¡No es posible comprobar los esquemas!"
 
-#: include/functions.inc:2581
+#: include/functions.inc:2584
 msgid ""
 "Used to lock currently edited entries to avoid multiple changes at the same "
 "time."
 msgstr "Usado para bloquear entradas editadas actualmente y así evitar múltiples cambios simultáneos."
 
-#: include/functions.inc:2593
+#: include/functions.inc:2596
 #, php-format
 msgid "Missing required object class '%s'!"
 msgstr "¡No se ha encontrado la clase de objeto necesaria '%s'!"
 
-#: include/functions.inc:2596
+#: include/functions.inc:2599
 #, php-format
 msgid "Missing optional object class '%s'!"
 msgstr "¡No se ha encontrado la clase de objeto opcional '%s'!"
 
-#: include/functions.inc:2600
+#: include/functions.inc:2603
 #, php-format
 msgid "Class(es) available"
 msgstr "Clase(s) disponibles"
 
-#: include/functions.inc:2620
+#: include/functions.inc:2623
 msgid ""
 "You have installed the mixed groups plugin, but your schema configuration "
 "does not support this."
 msgstr ""
 
-#: include/functions.inc:2621
+#: include/functions.inc:2624
 msgid ""
 "In order to use mixed groups the objectClass \"posixGroup\" must be "
 "AUXILIARY"
 msgstr ""
 
-#: include/functions.inc:2624
+#: include/functions.inc:2627
 msgid ""
 "Your schema is configured to support mixed groups, but this plugin is not "
 "present."
 msgstr ""
 
-#: include/functions.inc:2625
+#: include/functions.inc:2628
 msgid "The objectClass \"posixGroup\" must be STRUCTURAL"
 msgstr ""
 
-#: include/functions.inc:3075 include/functions.inc:3096
-#: include/functions.inc:3134 include/functions.inc:3146
-#: include/functions.inc:3150 include/functions.inc:3157
-#: include/functions.inc:3166
+#: include/functions.inc:3106 include/functions.inc:3127
+#: include/functions.inc:3165 include/functions.inc:3177
+#: include/functions.inc:3181 include/functions.inc:3188
+#: include/functions.inc:3197
 msgid "Cannot allocate a free ID:"
 msgstr "No se puede asignar un identificador (ID) libre:"
 
-#: include/functions.inc:3075
+#: include/functions.inc:3106
 msgid "unknown idAllocation method!"
 msgstr "¡método de asignación de id desconocido!"
 
-#: include/functions.inc:3096
+#: include/functions.inc:3127
 #, php-format
 msgid "%sPoolMin >= %sPoolMax!"
 msgstr "¡%sPoolMin >= %sPoolMax!"
 
-#: include/functions.inc:3126
+#: include/functions.inc:3157
 msgid "Cannot create sambaUnixIdPool entry!"
 msgstr "¡No se puede crear la entrada sambaUnixIdPool!"
 
-#: include/functions.inc:3134
+#: include/functions.inc:3165
 msgid "sambaUnixIdPool is not unique!"
 msgstr "¡sambaUnixIdPool no es único!"
 
-#: include/functions.inc:3146 include/functions.inc:3150
+#: include/functions.inc:3177 include/functions.inc:3181
 msgid "no ID available!"
 msgstr "¡No hay ID disponibles!"
 
-#: include/functions.inc:3166
+#: include/functions.inc:3197
 msgid "maximum tries exceeded!"
 msgstr "¡Excedido el número de intentos máximo!"
 
-#: include/functions.inc:3228
+#: include/functions.inc:3259
 msgid "Cannot allocate a free ID!"
 msgstr "¡No se puede asignar un identificador (ID) libre!"
 
-#: include/functions.inc:3264
+#: include/functions.inc:3295
 #, php-format
 msgid "Cannot locate file '%s' - please run '%s' to fix this"
 msgstr "No se puede encontrar el archivo '%s' - por favor ejecute '%s' para solucionarlo"
@@ -3597,6 +3598,11 @@ msgstr "No hay definiciones de extensión para iniciar '%s', por favor compruebe
 msgid "Delete process has been canceled by plugin '%s': %s"
 msgstr "El proceso de eliminación ha sido cancelado por la extensión '%s': %s"
 
+#: include/simpleplugin/class_simpleTabs.inc:405
+#, php-format
+msgid "Move from \"%s\" to \"%s\" failed"
+msgstr ""
+
 #: include/class_timezone.inc:52
 #, php-format
 msgid "The timezone setting \"%s\" in your configuration is not valid."
@@ -3659,63 +3665,63 @@ msgid ""
 "fusiondirectory-setup --check-config to fix this."
 msgstr ""
 
-#: html/index.php:175
+#: html/index.php:171
 msgid "Smarty error"
 msgstr "Error Smarty"
 
-#: html/index.php:177
+#: html/index.php:173
 #, php-format
 msgid "Directory \"%s\" specified as compile directory is not accessible!"
 msgstr ""
 
-#: html/index.php:212
+#: html/index.php:208
 msgid "Your FusionDirectory session has expired!"
 msgstr "Su sesión de FusionDirectory ha expirado!"
 
-#: html/index.php:215
+#: html/index.php:211
 msgid "Your IP has changed!"
 msgstr ""
 
-#: html/index.php:218
+#: html/index.php:214
 #, php-format
 msgid "Invalid plugin parameter \"%s\"!"
 msgstr ""
 
-#: html/index.php:221
+#: html/index.php:217
 msgid "No session found!"
 msgstr ""
 
-#: html/index.php:256
+#: html/index.php:252
 msgid "LDAP schema check reported errors:"
 msgstr ""
 
-#: html/index.php:282
+#: html/index.php:278
 msgid "Please specify a valid username!"
 msgstr "¡Por favor introduzca un nombre de usuario válido!"
 
-#: html/index.php:285
+#: html/index.php:281
 msgid "Please specify your password!"
 msgstr "¡Por favor introduzca una contraseña!"
 
-#: html/index.php:304
+#: html/index.php:300
 msgid "Please check the username/password combination."
 msgstr "Por favor compruebe la combinación nombre de usuario/contraseña"
 
-#: html/index.php:337
+#: html/index.php:333
 msgid "Account locked. Please contact your system administrator!"
 msgstr "Cuenta bloqueada. ¡Por favor contacte con su administrador de sistemas!"
 
-#: html/index.php:440
+#: html/index.php:436
 #, php-format
 msgid "CAS user \"%s\" could not be found in the LDAP"
 msgstr ""
 
-#: html/index.php:450
+#: html/index.php:446
 #, php-format
 msgid "CAS user \"%s\" match several users in the LDAP"
 msgstr ""
 
-#: html/index.php:485
+#: html/index.php:481
 msgid ""
 "Your browser has cookies disabled. Please enable cookies and reload this "
 "page before logging in!"
diff --git a/locale/fa_IR/fusiondirectory.po b/locale/fa_IR/fusiondirectory.po
index fe6203b160826b9082136b4058042f46fc9ed31e..55ae898ab17ac9c2b683dfa4635604e2876759dd 100644
--- a/locale/fa_IR/fusiondirectory.po
+++ b/locale/fa_IR/fusiondirectory.po
@@ -7,8 +7,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory-109\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2016-01-04 11:54+0100\n"
-"PO-Revision-Date: 2016-01-04 10:52+0000\n"
+"POT-Creation-Date: 2016-01-22 11:26+0100\n"
+"PO-Revision-Date: 2016-01-22 10:24+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n"
 "Language-Team: Persian (Iran) (http://www.transifex.com/fusiondirectory/FusionDirectory-109/language/fa_IR/)\n"
 "MIME-Version: 1.0\n"
@@ -95,7 +95,7 @@ msgstr "شماره فکس"
 
 #: plugins/admin/groups/class_roleGeneric.inc:78
 #: plugins/admin/users/class_userManagement.inc:42
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:29
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:27
 #: setup/class_setupStep_Migrate.inc:871
 msgid "Users"
 msgstr ""
@@ -204,10 +204,10 @@ msgid "Only allow this group to connect to this list of hosts"
 msgstr ""
 
 #: plugins/admin/groups/class_group.inc:181
-#: plugins/personal/posix/class_posixAccount.inc:458 include/functions.inc:791
-#: include/functions.inc:2545 include/class_xml.inc:55
+#: plugins/personal/posix/class_posixAccount.inc:458 include/functions.inc:794
+#: include/functions.inc:2548 include/class_xml.inc:55
 #: include/simpleplugin/class_simpleTabs.inc:325 html/index.php:56
-#: html/index.php:62 html/index.php:485 html/class_passwordRecovery.inc:378
+#: html/index.php:62 html/index.php:481 html/class_passwordRecovery.inc:378
 #: setup/class_setupStep_Migrate.inc:572
 #: setup/class_setupStep_Migrate.inc:1083
 #: setup/class_setupStep_Migrate.inc:1202
@@ -250,7 +250,7 @@ msgstr ""
 msgid "Objects member of this group"
 msgstr ""
 
-#: plugins/admin/groups/class_ogroup.inc:317
+#: plugins/admin/groups/class_ogroup.inc:318
 msgid ""
 "Putting both workstations and terminals in the same group is not allowed"
 msgstr ""
@@ -873,19 +873,19 @@ msgstr ""
 msgid "Statistics"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:30
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:28
 msgid "Statistics about users"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:41
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:39
 msgid "Users statistics"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:46
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:44
 msgid "Groups statistics"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:51
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:49
 #: plugins/addons/dashboard/users_accounts.tpl.c:8
 msgid "Expired accounts"
 msgstr ""
@@ -2106,11 +2106,11 @@ msgstr ""
 #: include/class_config.inc:479 include/class_msgPool.inc:215
 #: include/class_msgPool.inc:235 include/class_msgPool.inc:265
 #: include/class_msgPool.inc:682 include/class_msgPool.inc:713
-#: include/class_msgPool.inc:740 include/functions.inc:3075
-#: include/functions.inc:3096 include/functions.inc:3126
-#: include/functions.inc:3134 include/functions.inc:3146
-#: include/functions.inc:3150 include/functions.inc:3157
-#: include/functions.inc:3166 include/functions.inc:3228
+#: include/class_msgPool.inc:740 include/functions.inc:3106
+#: include/functions.inc:3127 include/functions.inc:3157
+#: include/functions.inc:3165 include/functions.inc:3177
+#: include/functions.inc:3181 include/functions.inc:3188
+#: include/functions.inc:3197 include/functions.inc:3259
 #: include/class_msg_dialog.inc:128 include/class_xml.inc:58
 #: include/class_plugin.inc:1663 include/class_CopyPasteHandler.inc:278
 #: include/simpleplugin/class_dialogAttributes.inc:733
@@ -2121,11 +2121,12 @@ msgstr ""
 #: include/simpleplugin/class_attribute.inc:1877
 #: include/simpleplugin/class_attribute.inc:1879
 #: include/simpleplugin/class_simpleTabs.inc:90
+#: include/simpleplugin/class_simpleTabs.inc:405
 #: include/password-methods/class_password-methods-sasl.inc:60
 #: include/password-methods/class_password-methods-sasl.inc:86
-#: include/password-methods/class_password-methods.inc:434
-#: include/password-methods/class_password-methods.inc:444
-#: include/class_SnapshotHandler.inc:415 html/index.php:438 html/index.php:448
+#: include/password-methods/class_password-methods.inc:437
+#: include/password-methods/class_password-methods.inc:447
+#: include/class_SnapshotHandler.inc:415 html/index.php:434 html/index.php:444
 #: setup/class_setupStep_Migrate.inc:935
 #: ihtml/themes/default/msg_dialog.tpl.c:2 setup/setup_checks.tpl.c:5
 msgid "Error"
@@ -2244,8 +2245,8 @@ msgid "XML error in fusiondirectory.conf: %s at line %d"
 msgstr ""
 
 #: include/class_config.inc:162 include/class_config.inc:300
-#: include/class_config.inc:1001 include/class_config.inc:1014
-#: include/functions.inc:660 include/class_timezone.inc:51
+#: include/class_config.inc:985 include/class_config.inc:998
+#: include/functions.inc:663 include/class_timezone.inc:51
 #: include/password-methods/class_password-methods-sha.inc:71
 #: include/password-methods/class_password-methods-ssha.inc:75
 #: include/password-methods/class_password-methods-ssha.inc:91
@@ -2262,16 +2263,16 @@ msgid ""
 msgstr ""
 
 #: include/class_config.inc:337 include/class_ldap.inc:917
-#: include/class_ldap.inc:1371 include/functions.inc:523
-#: include/functions.inc:675 include/functions.inc:722
-#: include/functions.inc:783 include/functions.inc:838
-#: include/functions.inc:2965 include/simpleplugin/class_simplePlugin.inc:545
+#: include/class_ldap.inc:1371 include/functions.inc:526
+#: include/functions.inc:678 include/functions.inc:725
+#: include/functions.inc:786 include/functions.inc:841
+#: include/functions.inc:2985 include/simpleplugin/class_simplePlugin.inc:545
 #: include/simpleplugin/class_attribute.inc:2895
-#: include/password-methods/class_password-methods.inc:196
+#: include/password-methods/class_password-methods.inc:199
 #: include/class_SnapshotHandler.inc:50 include/class_SnapshotHandler.inc:244
 #: include/class_SnapshotHandler.inc:277 include/class_SnapshotHandler.inc:292
 #: include/class_SnapshotHandler.inc:422 include/class_SnapshotHandler.inc:425
-#: html/index.php:364 html/class_passwordRecovery.inc:497
+#: html/index.php:360 html/class_passwordRecovery.inc:497
 #: setup/class_setupStep_Migrate.inc:451
 #: setup/class_setupStep_Migrate.inc:1130
 msgid "LDAP error"
@@ -2286,25 +2287,25 @@ msgstr ""
 msgid "The selected mail method (class %s) is not available"
 msgstr ""
 
-#: include/class_config.inc:1002
+#: include/class_config.inc:986
 #, php-format
 msgid ""
 "The snapshot functionality is enabled, but the required variable '%s' is not"
 " set."
 msgstr ""
 
-#: include/class_config.inc:1015
+#: include/class_config.inc:999
 #, php-format
 msgid ""
 "The snapshot functionality is enabled, but the required compression module "
 "is missing. Please install '%s'."
 msgstr ""
 
-#: include/class_config.inc:1120
+#: include/class_config.inc:1104
 msgid "All categories"
 msgstr ""
 
-#: include/class_config.inc:1247
+#: include/class_config.inc:1231
 msgid "My account"
 msgstr ""
 
@@ -2318,10 +2319,10 @@ msgid "LDAP performance is poor: last query took about %.2fs!"
 msgstr ""
 
 #: include/class_ldap.inc:868 include/class_ldap.inc:904
-#: include/functions.inc:565 include/functions.inc:650
-#: include/functions.inc:770 include/functions.inc:1189
-#: include/functions.inc:2272 include/functions.inc:2314
-#: include/functions.inc:2343 include/class_session.inc:50
+#: include/functions.inc:568 include/functions.inc:653
+#: include/functions.inc:773 include/functions.inc:1192
+#: include/functions.inc:2275 include/functions.inc:2317
+#: include/functions.inc:2346 include/class_session.inc:50
 #: include/class_session.inc:87 include/class_session.inc:125
 #: include/class_log.inc:96 include/class_acl.inc:118
 msgid "Internal error"
@@ -2947,7 +2948,7 @@ msgid ""
 "Fatal error: cannot instantiate class '%s' - try running '%s' to fix this"
 msgstr ""
 
-#: include/functions.inc:493 include/functions.inc:3263
+#: include/functions.inc:496 include/functions.inc:3294
 #: include/class_xml.inc:61 include/simpleplugin/class_simplePlugin.inc:263
 #: include/simpleplugin/class_simplePlugin.inc:268
 #: include/simpleplugin/class_simplePlugin.inc:280
@@ -2955,246 +2956,246 @@ msgstr ""
 msgid "Fatal error"
 msgstr "خطا"
 
-#: include/functions.inc:494
+#: include/functions.inc:497
 #, php-format
 msgid "FATAL: Error when connecting the LDAP. Server said '%s'."
 msgstr ""
 
-#: include/functions.inc:565
+#: include/functions.inc:568
 msgid ""
 "Login (uid) is not unique inside the LDAP tree. Please contact your "
 "administrator."
 msgstr ""
 
-#: include/functions.inc:598
+#: include/functions.inc:601
 msgid "Authentication error"
 msgstr ""
 
-#: include/functions.inc:599
+#: include/functions.inc:602
 msgid ""
 "It seems your user password has expired. Please use <a "
 "href=\"recovery.php\">password recovery</a> to change it."
 msgstr ""
 
-#: include/functions.inc:650 include/functions.inc:770
+#: include/functions.inc:653 include/functions.inc:773
 msgid "Error while adding a lock. Contact the developers!"
 msgstr ""
 
-#: include/functions.inc:660
+#: include/functions.inc:663
 #, php-format
 msgid ""
 "Cannot create locking information in LDAP tree. Please contact your "
 "administrator!"
 msgstr ""
 
-#: include/functions.inc:660
+#: include/functions.inc:663
 #, php-format
 msgid "LDAP server returned: %s"
 msgstr ""
 
-#: include/functions.inc:791
+#: include/functions.inc:794
 msgid ""
 "Found multiple locks for object to be locked. This should not happen - "
 "cleaning up multiple references."
 msgstr ""
 
-#: include/functions.inc:1109
+#: include/functions.inc:1112
 #, php-format
 msgid "The size limit of %d entries is exceed!"
 msgstr ""
 
-#: include/functions.inc:1111
+#: include/functions.inc:1114
 #, php-format
 msgid ""
 "Set the new size limit to %s and show me this message if the limit still "
 "exceeds"
 msgstr ""
 
-#: include/functions.inc:1128
+#: include/functions.inc:1131
 msgid "Configure"
 msgstr ""
 
-#: include/functions.inc:1133
+#: include/functions.inc:1136
 msgid "incomplete"
 msgstr ""
 
-#: include/functions.inc:1538
+#: include/functions.inc:1541
 msgid "Continue anyway"
 msgstr ""
 
-#: include/functions.inc:1540
+#: include/functions.inc:1543
 msgid "Edit anyway"
 msgstr ""
 
-#: include/functions.inc:1542
+#: include/functions.inc:1545
 #, php-format
 msgid "You're going to edit the LDAP entry/entries %s"
 msgstr ""
 
-#: include/functions.inc:1796
+#: include/functions.inc:1799
 msgid "Entries per page"
 msgstr ""
 
-#: include/functions.inc:1827 include/class_filter.inc:353
+#: include/functions.inc:1830 include/class_filter.inc:353
 msgid "Apply filter"
 msgstr ""
 
-#: include/functions.inc:2095
+#: include/functions.inc:2098
 #, php-format
 msgid "%sB"
 msgstr ""
 
-#: include/functions.inc:2096
+#: include/functions.inc:2099
 #, php-format
 msgid "%sKiB"
 msgstr ""
 
-#: include/functions.inc:2097
+#: include/functions.inc:2100
 #, php-format
 msgid "%sMiB"
 msgstr ""
 
-#: include/functions.inc:2098
+#: include/functions.inc:2101
 #, php-format
 msgid "%sGiB"
 msgstr ""
 
-#: include/functions.inc:2099
+#: include/functions.inc:2102
 #, php-format
 msgid "%sTiB"
 msgstr ""
 
-#: include/functions.inc:2100
+#: include/functions.inc:2103
 #, php-format
 msgid "%sPiB"
 msgstr ""
 
-#: include/functions.inc:2101
+#: include/functions.inc:2104
 #, php-format
 msgid "%sEiB"
 msgstr ""
 
-#: include/functions.inc:2102
+#: include/functions.inc:2105
 #, php-format
 msgid "%sZiB"
 msgstr ""
 
-#: include/functions.inc:2103
+#: include/functions.inc:2106
 #, php-format
 msgid "%sYiB"
 msgstr ""
 
-#: include/functions.inc:2135 include/class_filter.inc:315
+#: include/functions.inc:2138 include/class_filter.inc:315
 msgid "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
 msgstr ""
 
-#: include/functions.inc:2272
+#: include/functions.inc:2275
 #, php-format
 msgid ""
 "File '%s' could not be deleted. Try fusiondirectory-setup --check-"
 "directories to fix permissions."
 msgstr ""
 
-#: include/functions.inc:2314
+#: include/functions.inc:2317
 msgid "Cannot write to revision file!"
 msgstr ""
 
-#: include/functions.inc:2343
+#: include/functions.inc:2346
 msgid "Cannot read to revision file!"
 msgstr ""
 
-#: include/functions.inc:2545
+#: include/functions.inc:2548
 msgid "'nextIdHook' is not available. Using default base!"
 msgstr ""
 
-#: include/functions.inc:2563
+#: include/functions.inc:2566
 msgid "LDAP warning"
 msgstr ""
 
-#: include/functions.inc:2563
+#: include/functions.inc:2566
 msgid "Cannot get schema information from server. No schema check possible!"
 msgstr ""
 
-#: include/functions.inc:2581
+#: include/functions.inc:2584
 msgid ""
 "Used to lock currently edited entries to avoid multiple changes at the same "
 "time."
 msgstr ""
 
-#: include/functions.inc:2593
+#: include/functions.inc:2596
 #, php-format
 msgid "Missing required object class '%s'!"
 msgstr ""
 
-#: include/functions.inc:2596
+#: include/functions.inc:2599
 #, php-format
 msgid "Missing optional object class '%s'!"
 msgstr ""
 
-#: include/functions.inc:2600
+#: include/functions.inc:2603
 #, php-format
 msgid "Class(es) available"
 msgstr ""
 
-#: include/functions.inc:2620
+#: include/functions.inc:2623
 msgid ""
 "You have installed the mixed groups plugin, but your schema configuration "
 "does not support this."
 msgstr ""
 
-#: include/functions.inc:2621
+#: include/functions.inc:2624
 msgid ""
 "In order to use mixed groups the objectClass \"posixGroup\" must be "
 "AUXILIARY"
 msgstr ""
 
-#: include/functions.inc:2624
+#: include/functions.inc:2627
 msgid ""
 "Your schema is configured to support mixed groups, but this plugin is not "
 "present."
 msgstr ""
 
-#: include/functions.inc:2625
+#: include/functions.inc:2628
 msgid "The objectClass \"posixGroup\" must be STRUCTURAL"
 msgstr ""
 
-#: include/functions.inc:3075 include/functions.inc:3096
-#: include/functions.inc:3134 include/functions.inc:3146
-#: include/functions.inc:3150 include/functions.inc:3157
-#: include/functions.inc:3166
+#: include/functions.inc:3106 include/functions.inc:3127
+#: include/functions.inc:3165 include/functions.inc:3177
+#: include/functions.inc:3181 include/functions.inc:3188
+#: include/functions.inc:3197
 msgid "Cannot allocate a free ID:"
 msgstr ""
 
-#: include/functions.inc:3075
+#: include/functions.inc:3106
 msgid "unknown idAllocation method!"
 msgstr ""
 
-#: include/functions.inc:3096
+#: include/functions.inc:3127
 #, php-format
 msgid "%sPoolMin >= %sPoolMax!"
 msgstr ""
 
-#: include/functions.inc:3126
+#: include/functions.inc:3157
 msgid "Cannot create sambaUnixIdPool entry!"
 msgstr ""
 
-#: include/functions.inc:3134
+#: include/functions.inc:3165
 msgid "sambaUnixIdPool is not unique!"
 msgstr ""
 
-#: include/functions.inc:3146 include/functions.inc:3150
+#: include/functions.inc:3177 include/functions.inc:3181
 msgid "no ID available!"
 msgstr ""
 
-#: include/functions.inc:3166
+#: include/functions.inc:3197
 msgid "maximum tries exceeded!"
 msgstr ""
 
-#: include/functions.inc:3228
+#: include/functions.inc:3259
 msgid "Cannot allocate a free ID!"
 msgstr ""
 
-#: include/functions.inc:3264
+#: include/functions.inc:3295
 #, php-format
 msgid "Cannot locate file '%s' - please run '%s' to fix this"
 msgstr "فایل '%s' را نمی توانم پیدا کنم برای رفع مشکل دستور '%s' را بزنید."
@@ -3597,6 +3598,11 @@ msgstr ""
 msgid "Delete process has been canceled by plugin '%s': %s"
 msgstr ""
 
+#: include/simpleplugin/class_simpleTabs.inc:405
+#, php-format
+msgid "Move from \"%s\" to \"%s\" failed"
+msgstr ""
+
 #: include/class_timezone.inc:52
 #, php-format
 msgid "The timezone setting \"%s\" in your configuration is not valid."
@@ -3659,63 +3665,63 @@ msgid ""
 "fusiondirectory-setup --check-config to fix this."
 msgstr ""
 
-#: html/index.php:175
+#: html/index.php:171
 msgid "Smarty error"
 msgstr ""
 
-#: html/index.php:177
+#: html/index.php:173
 #, php-format
 msgid "Directory \"%s\" specified as compile directory is not accessible!"
 msgstr ""
 
-#: html/index.php:212
+#: html/index.php:208
 msgid "Your FusionDirectory session has expired!"
 msgstr ""
 
-#: html/index.php:215
+#: html/index.php:211
 msgid "Your IP has changed!"
 msgstr ""
 
-#: html/index.php:218
+#: html/index.php:214
 #, php-format
 msgid "Invalid plugin parameter \"%s\"!"
 msgstr ""
 
-#: html/index.php:221
+#: html/index.php:217
 msgid "No session found!"
 msgstr ""
 
-#: html/index.php:256
+#: html/index.php:252
 msgid "LDAP schema check reported errors:"
 msgstr ""
 
-#: html/index.php:282
+#: html/index.php:278
 msgid "Please specify a valid username!"
 msgstr ""
 
-#: html/index.php:285
+#: html/index.php:281
 msgid "Please specify your password!"
 msgstr ""
 
-#: html/index.php:304
+#: html/index.php:300
 msgid "Please check the username/password combination."
 msgstr ""
 
-#: html/index.php:337
+#: html/index.php:333
 msgid "Account locked. Please contact your system administrator!"
 msgstr ""
 
-#: html/index.php:440
+#: html/index.php:436
 #, php-format
 msgid "CAS user \"%s\" could not be found in the LDAP"
 msgstr ""
 
-#: html/index.php:450
+#: html/index.php:446
 #, php-format
 msgid "CAS user \"%s\" match several users in the LDAP"
 msgstr ""
 
-#: html/index.php:485
+#: html/index.php:481
 msgid ""
 "Your browser has cookies disabled. Please enable cookies and reload this "
 "page before logging in!"
diff --git a/locale/fr/fusiondirectory.po b/locale/fr/fusiondirectory.po
index 9fc619511ed7cae869ed8798d46e18f0c6488886..9d70b221a4a994a6d2b6ac39256b35e7f64b249f 100644
--- a/locale/fr/fusiondirectory.po
+++ b/locale/fr/fusiondirectory.po
@@ -4,7 +4,7 @@
 # 
 # Translators:
 # Benoit Mortier <benoit.mortier@opensides.be>, 2015-2016
-# MCMic, 2015
+# MCMic, 2015-2016
 # fusiondirectory <contact@fusiondirectory.org>, 2014-2015
 # fusiondirectory <contact@fusiondirectory.org>, 2014
 # MCMic, 2015
@@ -12,8 +12,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory-109\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2016-01-04 11:54+0100\n"
-"PO-Revision-Date: 2016-01-04 11:05+0000\n"
+"POT-Creation-Date: 2016-01-22 11:26+0100\n"
+"PO-Revision-Date: 2016-01-22 10:31+0000\n"
 "Last-Translator: Benoit Mortier <benoit.mortier@opensides.be>\n"
 "Language-Team: French (http://www.transifex.com/fusiondirectory/FusionDirectory-109/language/fr/)\n"
 "MIME-Version: 1.0\n"
@@ -100,7 +100,7 @@ msgstr "Numéro de fax"
 
 #: plugins/admin/groups/class_roleGeneric.inc:78
 #: plugins/admin/users/class_userManagement.inc:42
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:29
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:27
 #: setup/class_setupStep_Migrate.inc:871
 msgid "Users"
 msgstr "Utilisateurs"
@@ -209,10 +209,10 @@ 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"
 
 #: plugins/admin/groups/class_group.inc:181
-#: plugins/personal/posix/class_posixAccount.inc:458 include/functions.inc:791
-#: include/functions.inc:2545 include/class_xml.inc:55
+#: plugins/personal/posix/class_posixAccount.inc:458 include/functions.inc:794
+#: include/functions.inc:2548 include/class_xml.inc:55
 #: include/simpleplugin/class_simpleTabs.inc:325 html/index.php:56
-#: html/index.php:62 html/index.php:485 html/class_passwordRecovery.inc:378
+#: html/index.php:62 html/index.php:481 html/class_passwordRecovery.inc:378
 #: setup/class_setupStep_Migrate.inc:572
 #: setup/class_setupStep_Migrate.inc:1083
 #: setup/class_setupStep_Migrate.inc:1202
@@ -255,7 +255,7 @@ msgstr "Objets membres"
 msgid "Objects member of this group"
 msgstr "Objets membres de ce groupe"
 
-#: plugins/admin/groups/class_ogroup.inc:317
+#: plugins/admin/groups/class_ogroup.inc:318
 msgid ""
 "Putting both workstations and terminals in the same group is not allowed"
 msgstr "Mettre les stations de travail et les terminaux dans le même groupe est interdit"
@@ -316,7 +316,7 @@ msgstr "Gérer les groupes et les rôles"
 
 #: plugins/admin/groups/class_groupManagement.inc:33
 msgid "Allows you to manage object groups, POSIX groups and roles"
-msgstr "Vous permet de gérer les groupes d'objets, groupes POSIX et rôles."
+msgstr "Permet de gérer les groupes d'objets, groupes POSIX et rôles"
 
 #: plugins/admin/groups/class_groupManagement.inc:71
 msgid "Edit role properties"
@@ -692,7 +692,7 @@ msgstr "Tous les objets dans le sous arbre actuel"
 #: plugins/admin/aclrole/class_aclEditionDialog.inc:217
 #, php-format
 msgid "Edit ACL for \"%s\""
-msgstr "Éditer l'ACL pour \"%s\""
+msgstr "Éditer l’ACL pour \"%s\""
 
 #: plugins/admin/aclrole/class_aclEditionDialog.inc:258
 #: plugins/admin/aclrole/class_aclEditionDialog.inc:359
@@ -745,7 +745,7 @@ msgstr "Gestion des rôles ACL"
 
 #: plugins/admin/aclrole/class_aclRoleManagement.inc:36
 msgid "Manage ACL roles"
-msgstr "Gestion des rôles ACL"
+msgstr "Gérer les rôles ACL"
 
 #: plugins/admin/aclrole/class_aclRole.inc:38
 #, php-format
@@ -786,7 +786,7 @@ msgstr "Gestion des affectations ACL"
 
 #: plugins/admin/acl/class_aclManagement.inc:40
 msgid "Manage ACL roles assignments to users"
-msgstr "Gestion des rôles ACL assignés au utilisateurs"
+msgstr "Gérer les affectations des rôles ACL aux utilisateurs"
 
 #: plugins/admin/acl/class_aclManagement.inc:78
 #: plugins/admin/acl/class_aclAssignment.inc:263
@@ -878,19 +878,19 @@ msgstr "Rapports"
 msgid "Statistics"
 msgstr "Statistiques"
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:30
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:28
 msgid "Statistics about users"
 msgstr "Statistiques sur les utilisateurs"
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:41
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:39
 msgid "Users statistics"
 msgstr "Statistiques utilisateurs"
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:46
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:44
 msgid "Groups statistics"
 msgstr "Statistiques des groupes"
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:51
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:49
 #: plugins/addons/dashboard/users_accounts.tpl.c:8
 msgid "Expired accounts"
 msgstr "Comptes expirés"
@@ -2111,11 +2111,11 @@ msgstr "Sélectionner tout"
 #: include/class_config.inc:479 include/class_msgPool.inc:215
 #: include/class_msgPool.inc:235 include/class_msgPool.inc:265
 #: include/class_msgPool.inc:682 include/class_msgPool.inc:713
-#: include/class_msgPool.inc:740 include/functions.inc:3075
-#: include/functions.inc:3096 include/functions.inc:3126
-#: include/functions.inc:3134 include/functions.inc:3146
-#: include/functions.inc:3150 include/functions.inc:3157
-#: include/functions.inc:3166 include/functions.inc:3228
+#: include/class_msgPool.inc:740 include/functions.inc:3106
+#: include/functions.inc:3127 include/functions.inc:3157
+#: include/functions.inc:3165 include/functions.inc:3177
+#: include/functions.inc:3181 include/functions.inc:3188
+#: include/functions.inc:3197 include/functions.inc:3259
 #: include/class_msg_dialog.inc:128 include/class_xml.inc:58
 #: include/class_plugin.inc:1663 include/class_CopyPasteHandler.inc:278
 #: include/simpleplugin/class_dialogAttributes.inc:733
@@ -2126,11 +2126,12 @@ msgstr "Sélectionner tout"
 #: include/simpleplugin/class_attribute.inc:1877
 #: include/simpleplugin/class_attribute.inc:1879
 #: include/simpleplugin/class_simpleTabs.inc:90
+#: include/simpleplugin/class_simpleTabs.inc:405
 #: include/password-methods/class_password-methods-sasl.inc:60
 #: include/password-methods/class_password-methods-sasl.inc:86
-#: include/password-methods/class_password-methods.inc:434
-#: include/password-methods/class_password-methods.inc:444
-#: include/class_SnapshotHandler.inc:415 html/index.php:438 html/index.php:448
+#: include/password-methods/class_password-methods.inc:437
+#: include/password-methods/class_password-methods.inc:447
+#: include/class_SnapshotHandler.inc:415 html/index.php:434 html/index.php:444
 #: setup/class_setupStep_Migrate.inc:935
 #: ihtml/themes/default/msg_dialog.tpl.c:2 setup/setup_checks.tpl.c:5
 msgid "Error"
@@ -2249,8 +2250,8 @@ msgid "XML error in fusiondirectory.conf: %s at line %d"
 msgstr "Erreur XML dans fusiondirectory.conf : %s à la ligne %d"
 
 #: include/class_config.inc:162 include/class_config.inc:300
-#: include/class_config.inc:1001 include/class_config.inc:1014
-#: include/functions.inc:660 include/class_timezone.inc:51
+#: include/class_config.inc:985 include/class_config.inc:998
+#: include/functions.inc:663 include/class_timezone.inc:51
 #: include/password-methods/class_password-methods-sha.inc:71
 #: include/password-methods/class_password-methods-ssha.inc:75
 #: include/password-methods/class_password-methods-ssha.inc:91
@@ -2267,16 +2268,16 @@ msgid ""
 msgstr "Il semble que vous essayez de déchiffrer quelque chose qui n'est pas chiffré :%s<br/>\\nVeuillez vérifier que vous n'utilisez pas un fichier fusiondirectory.secrets alors que vos mots de passe ne sont pas chiffrés."
 
 #: include/class_config.inc:337 include/class_ldap.inc:917
-#: include/class_ldap.inc:1371 include/functions.inc:523
-#: include/functions.inc:675 include/functions.inc:722
-#: include/functions.inc:783 include/functions.inc:838
-#: include/functions.inc:2965 include/simpleplugin/class_simplePlugin.inc:545
+#: include/class_ldap.inc:1371 include/functions.inc:526
+#: include/functions.inc:678 include/functions.inc:725
+#: include/functions.inc:786 include/functions.inc:841
+#: include/functions.inc:2985 include/simpleplugin/class_simplePlugin.inc:545
 #: include/simpleplugin/class_attribute.inc:2895
-#: include/password-methods/class_password-methods.inc:196
+#: include/password-methods/class_password-methods.inc:199
 #: include/class_SnapshotHandler.inc:50 include/class_SnapshotHandler.inc:244
 #: include/class_SnapshotHandler.inc:277 include/class_SnapshotHandler.inc:292
 #: include/class_SnapshotHandler.inc:422 include/class_SnapshotHandler.inc:425
-#: html/index.php:364 html/class_passwordRecovery.inc:497
+#: html/index.php:360 html/class_passwordRecovery.inc:497
 #: setup/class_setupStep_Migrate.inc:451
 #: setup/class_setupStep_Migrate.inc:1130
 msgid "LDAP error"
@@ -2291,25 +2292,25 @@ msgstr "Impossible de se connecter à l'annuaire LDAP. Veuillez contacter l'admi
 msgid "The selected mail method (class %s) is not available"
 msgstr "La méthode de messagerie sélectionnée (classe %s) n'est pas disponible"
 
-#: include/class_config.inc:1002
+#: include/class_config.inc:986
 #, php-format
 msgid ""
 "The snapshot functionality is enabled, but the required variable '%s' is not"
 " set."
 msgstr "La fonctionnalité des instantanés est activée, mais la variable requise '%s' n'est pas configurée."
 
-#: include/class_config.inc:1015
+#: include/class_config.inc:999
 #, php-format
 msgid ""
 "The snapshot functionality is enabled, but the required compression module "
 "is missing. Please install '%s'."
 msgstr "La fonctionnalité des instantanés est activée, mais le module nécessaire à la compression est manquant. Veuillez installer '%s'. "
 
-#: include/class_config.inc:1120
+#: include/class_config.inc:1104
 msgid "All categories"
 msgstr "Toutes les catégories"
 
-#: include/class_config.inc:1247
+#: include/class_config.inc:1231
 msgid "My account"
 msgstr "Mon compte"
 
@@ -2323,10 +2324,10 @@ msgid "LDAP performance is poor: last query took about %.2fs!"
 msgstr "La performance de votre annuaire est faible : la dernière requête a duré %.2fs !"
 
 #: include/class_ldap.inc:868 include/class_ldap.inc:904
-#: include/functions.inc:565 include/functions.inc:650
-#: include/functions.inc:770 include/functions.inc:1189
-#: include/functions.inc:2272 include/functions.inc:2314
-#: include/functions.inc:2343 include/class_session.inc:50
+#: include/functions.inc:568 include/functions.inc:653
+#: include/functions.inc:773 include/functions.inc:1192
+#: include/functions.inc:2275 include/functions.inc:2317
+#: include/functions.inc:2346 include/class_session.inc:50
 #: include/class_session.inc:87 include/class_session.inc:125
 #: include/class_log.inc:96 include/class_acl.inc:118
 msgid "Internal error"
@@ -2952,7 +2953,7 @@ msgid ""
 "Fatal error: cannot instantiate class '%s' - try running '%s' to fix this"
 msgstr "Erreur fatale : impossible d'initialiser la classe '%s' - veuillez exécuter '%s' pour essayer de régler le problème"
 
-#: include/functions.inc:493 include/functions.inc:3263
+#: include/functions.inc:496 include/functions.inc:3294
 #: include/class_xml.inc:61 include/simpleplugin/class_simplePlugin.inc:263
 #: include/simpleplugin/class_simplePlugin.inc:268
 #: include/simpleplugin/class_simplePlugin.inc:280
@@ -2960,246 +2961,246 @@ msgstr "Erreur fatale : impossible d'initialiser la classe '%s' - veuillez ex
 msgid "Fatal error"
 msgstr "Erreur fatale"
 
-#: include/functions.inc:494
+#: include/functions.inc:497
 #, php-format
 msgid "FATAL: Error when connecting the LDAP. Server said '%s'."
 msgstr "FATAL: Erreur lors de la connexion au serveur LDAP. Le serveur a répondu '%s'."
 
-#: include/functions.inc:565
+#: include/functions.inc:568
 msgid ""
 "Login (uid) is not unique inside the LDAP tree. Please contact your "
 "administrator."
 msgstr "Ce login (uid) n'est pas unique au sein de l’annuaire LDAP. Veuillez contacter votre administrateur système."
 
-#: include/functions.inc:598
+#: include/functions.inc:601
 msgid "Authentication error"
 msgstr "Erreur d'authentification"
 
-#: include/functions.inc:599
+#: include/functions.inc:602
 msgid ""
 "It seems your user password has expired. Please use <a "
 "href=\"recovery.php\">password recovery</a> to change it."
 msgstr "Il semble que votre mot de passe soit expiré. Veuillez utilisez <a href=\"recovery.php\">la récupération de mot de passe</a> pour le changer."
 
-#: include/functions.inc:650 include/functions.inc:770
+#: include/functions.inc:653 include/functions.inc:773
 msgid "Error while adding a lock. Contact the developers!"
 msgstr "Erreur lors de l'ajout d'un verrou. Contactez les développeurs !"
 
-#: include/functions.inc:660
+#: include/functions.inc:663
 #, php-format
 msgid ""
 "Cannot create locking information in LDAP tree. Please contact your "
 "administrator!"
 msgstr "Impossible d'obtenir les informations de verrouillage dans l'annuaire LDAP. Veuillez contacter votre administrateur !"
 
-#: include/functions.inc:660
+#: include/functions.inc:663
 #, php-format
 msgid "LDAP server returned: %s"
 msgstr "Le serveur LDAP a retourné : %s"
 
-#: include/functions.inc:791
+#: include/functions.inc:794
 msgid ""
 "Found multiple locks for object to be locked. This should not happen - "
 "cleaning up multiple references."
 msgstr "Verrou multiple pour un même objet détecté. Ceci ne devrait pas arriver. Effacement des références multiples."
 
-#: include/functions.inc:1109
+#: include/functions.inc:1112
 #, php-format
 msgid "The size limit of %d entries is exceed!"
 msgstr "La taille limite de %d entrées est dépassée !"
 
-#: include/functions.inc:1111
+#: include/functions.inc:1114
 #, php-format
 msgid ""
 "Set the new size limit to %s and show me this message if the limit still "
 "exceeds"
 msgstr "Mettre la nouvelle limite à %s et m’afficher ce message si la limite est toujours dépassée"
 
-#: include/functions.inc:1128
+#: include/functions.inc:1131
 msgid "Configure"
 msgstr "Configurer"
 
-#: include/functions.inc:1133
+#: include/functions.inc:1136
 msgid "incomplete"
 msgstr "incomplet"
 
-#: include/functions.inc:1538
+#: include/functions.inc:1541
 msgid "Continue anyway"
 msgstr "Continuer malgré tout"
 
-#: include/functions.inc:1540
+#: include/functions.inc:1543
 msgid "Edit anyway"
 msgstr "Éditer malgré tout"
 
-#: include/functions.inc:1542
+#: include/functions.inc:1545
 #, php-format
 msgid "You're going to edit the LDAP entry/entries %s"
 msgstr "Vous êtes sur le point d'éditer l'entrée(s) %s"
 
-#: include/functions.inc:1796
+#: include/functions.inc:1799
 msgid "Entries per page"
 msgstr "Entrées par page"
 
-#: include/functions.inc:1827 include/class_filter.inc:353
+#: include/functions.inc:1830 include/class_filter.inc:353
 msgid "Apply filter"
 msgstr "Appliquer le filtre"
 
-#: include/functions.inc:2095
+#: include/functions.inc:2098
 #, php-format
 msgid "%sB"
 msgstr "%sO"
 
-#: include/functions.inc:2096
+#: include/functions.inc:2099
 #, php-format
 msgid "%sKiB"
 msgstr "%sKiO"
 
-#: include/functions.inc:2097
+#: include/functions.inc:2100
 #, php-format
 msgid "%sMiB"
 msgstr "%sMiO"
 
-#: include/functions.inc:2098
+#: include/functions.inc:2101
 #, php-format
 msgid "%sGiB"
 msgstr "%sGiO"
 
-#: include/functions.inc:2099
+#: include/functions.inc:2102
 #, php-format
 msgid "%sTiB"
 msgstr "%sTiO"
 
-#: include/functions.inc:2100
+#: include/functions.inc:2103
 #, php-format
 msgid "%sPiB"
 msgstr "%sPiO"
 
-#: include/functions.inc:2101
+#: include/functions.inc:2104
 #, php-format
 msgid "%sEiB"
 msgstr "%sEiO"
 
-#: include/functions.inc:2102
+#: include/functions.inc:2105
 #, php-format
 msgid "%sZiB"
 msgstr "%sZiO"
 
-#: include/functions.inc:2103
+#: include/functions.inc:2106
 #, php-format
 msgid "%sYiB"
 msgstr "%sYiO"
 
-#: include/functions.inc:2135 include/class_filter.inc:315
+#: include/functions.inc:2138 include/class_filter.inc:315
 msgid "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
 msgstr "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
 
-#: include/functions.inc:2272
+#: include/functions.inc:2275
 #, php-format
 msgid ""
 "File '%s' could not be deleted. Try fusiondirectory-setup --check-"
 "directories to fix permissions."
 msgstr "Le fichier '%s' ne peut être supprimé. Essayer de lancer la commande «fusiondirectory-setup --check-directories» sur le serveur FusionDirectory pour corriger les permissions de fichiers."
 
-#: include/functions.inc:2314
+#: include/functions.inc:2317
 msgid "Cannot write to revision file!"
 msgstr "Impossible d'écrire dans le fichier de révision !"
 
-#: include/functions.inc:2343
+#: include/functions.inc:2346
 msgid "Cannot read to revision file!"
 msgstr "Impossible de lire le fichier de révision !"
 
-#: include/functions.inc:2545
+#: include/functions.inc:2548
 msgid "'nextIdHook' is not available. Using default base!"
 msgstr "'nextIdHook' n'est pas disponible. Utilisation de la base par défaut !"
 
-#: include/functions.inc:2563
+#: include/functions.inc:2566
 msgid "LDAP warning"
 msgstr "Avertissement LDAP"
 
-#: include/functions.inc:2563
+#: include/functions.inc:2566
 msgid "Cannot get schema information from server. No schema check possible!"
 msgstr "Impossible de récupérer les informations sur les schémas depuis le serveur. Vérification des schémas impossible !"
 
-#: include/functions.inc:2581
+#: include/functions.inc:2584
 msgid ""
 "Used to lock currently edited entries to avoid multiple changes at the same "
 "time."
 msgstr "Utilisé pour verrouiller les entrées actuellement modifiées afin d'éviter de multiples changements simultanés."
 
-#: include/functions.inc:2593
+#: include/functions.inc:2596
 #, php-format
 msgid "Missing required object class '%s'!"
 msgstr "Object class obligatoire '%s' manquante !"
 
-#: include/functions.inc:2596
+#: include/functions.inc:2599
 #, php-format
 msgid "Missing optional object class '%s'!"
 msgstr "Object class facultative '%s' manquante !"
 
-#: include/functions.inc:2600
+#: include/functions.inc:2603
 #, php-format
 msgid "Class(es) available"
 msgstr "Classe(s) disponible(s)"
 
-#: include/functions.inc:2620
+#: include/functions.inc:2623
 msgid ""
 "You have installed the mixed groups plugin, but your schema configuration "
 "does not support this."
 msgstr "Vous avez installé le plugin «mixed groups», mais vos schéma ne sont pas compatibles."
 
-#: include/functions.inc:2621
+#: include/functions.inc:2624
 msgid ""
 "In order to use mixed groups the objectClass \"posixGroup\" must be "
 "AUXILIARY"
 msgstr "Pour pouvoir utiliser «mixed groups» l’objectClass «posixGroup» doit être auxiliaire («AUXILIARY»)"
 
-#: include/functions.inc:2624
+#: include/functions.inc:2627
 msgid ""
 "Your schema is configured to support mixed groups, but this plugin is not "
 "present."
 msgstr "Vos schémas sont fait pour utiliser des «mixed groups», mais ce plugin n’est pas installé."
 
-#: include/functions.inc:2625
+#: include/functions.inc:2628
 msgid "The objectClass \"posixGroup\" must be STRUCTURAL"
 msgstr "L’objectClass «posixGroup» doit être structurelle («STRUCTURAL»)"
 
-#: include/functions.inc:3075 include/functions.inc:3096
-#: include/functions.inc:3134 include/functions.inc:3146
-#: include/functions.inc:3150 include/functions.inc:3157
-#: include/functions.inc:3166
+#: include/functions.inc:3106 include/functions.inc:3127
+#: include/functions.inc:3165 include/functions.inc:3177
+#: include/functions.inc:3181 include/functions.inc:3188
+#: include/functions.inc:3197
 msgid "Cannot allocate a free ID:"
 msgstr "Impossible d'allouer un ID libre :"
 
-#: include/functions.inc:3075
+#: include/functions.inc:3106
 msgid "unknown idAllocation method!"
 msgstr "Méthode d'allocation des id inconnue !"
 
-#: include/functions.inc:3096
+#: include/functions.inc:3127
 #, php-format
 msgid "%sPoolMin >= %sPoolMax!"
 msgstr "%sPoolMin >= %sPoolMax !"
 
-#: include/functions.inc:3126
+#: include/functions.inc:3157
 msgid "Cannot create sambaUnixIdPool entry!"
 msgstr "Impossible de créer l'entrée sambaUnixIdPool !"
 
-#: include/functions.inc:3134
+#: include/functions.inc:3165
 msgid "sambaUnixIdPool is not unique!"
 msgstr "sambaUnixIdPool n'est pas unique !"
 
-#: include/functions.inc:3146 include/functions.inc:3150
+#: include/functions.inc:3177 include/functions.inc:3181
 msgid "no ID available!"
 msgstr "Pas d’ID disponibles !"
 
-#: include/functions.inc:3166
+#: include/functions.inc:3197
 msgid "maximum tries exceeded!"
 msgstr "Nombre maximum d'essais dépassé !"
 
-#: include/functions.inc:3228
+#: include/functions.inc:3259
 msgid "Cannot allocate a free ID!"
 msgstr "Impossible d'assigner un ID !"
 
-#: include/functions.inc:3264
+#: include/functions.inc:3295
 #, php-format
 msgid "Cannot locate file '%s' - please run '%s' to fix this"
 msgstr "Fichier '%s' non trouvé - veuillez exécuter '%s' pour régler ce problème"
@@ -3359,7 +3360,7 @@ msgstr "Erreur XML"
 msgid ""
 "The object has changed since opened in FusionDirectory. All changes that may"
 " be done by others will get lost if you save this entry!"
-msgstr "Cet objet à été modifié depuis son ouverture dans FusionDirectory. Tout les changement effectués par les autres seront perdus si vous sauvez cette entrée !"
+msgstr "Cet objet a été modifié depuis son ouverture dans FusionDirectory. Tous les changements effectués par d’autres seront perdus si vous sauvez cette entrée !"
 
 #: include/class_plugin.inc:1466
 #, php-format
@@ -3602,6 +3603,11 @@ msgstr "Pas de définition de plugin pour l'initialisation de '%s', veuillez vé
 msgid "Delete process has been canceled by plugin '%s': %s"
 msgstr "L'effacement a été interrompu par le plugin '%s': %s"
 
+#: include/simpleplugin/class_simpleTabs.inc:405
+#, php-format
+msgid "Move from \"%s\" to \"%s\" failed"
+msgstr "La copie de \"%s\" vers \"%s\" à échoué :"
+
 #: include/class_timezone.inc:52
 #, php-format
 msgid "The timezone setting \"%s\" in your configuration is not valid."
@@ -3664,63 +3670,63 @@ msgid ""
 "fusiondirectory-setup --check-config to fix this."
 msgstr "Le fichier de configuration de FusionDirectory %s/%s ne peut être lu. Veuillez exécuter fusiondirectory-setup --check-config."
 
-#: html/index.php:175
+#: html/index.php:171
 msgid "Smarty error"
 msgstr "Erreur Smarty"
 
-#: html/index.php:177
+#: html/index.php:173
 #, php-format
 msgid "Directory \"%s\" specified as compile directory is not accessible!"
 msgstr "Le répertoire \"%s\" spécifié comme répertoire de compilation est inaccessible !"
 
-#: html/index.php:212
+#: html/index.php:208
 msgid "Your FusionDirectory session has expired!"
 msgstr "Votre session FusionDirectory a expiré !"
 
-#: html/index.php:215
+#: html/index.php:211
 msgid "Your IP has changed!"
 msgstr "Votre IP a changé !"
 
-#: html/index.php:218
+#: html/index.php:214
 #, php-format
 msgid "Invalid plugin parameter \"%s\"!"
 msgstr "Paramètre de plugin «%s» invalide !"
 
-#: html/index.php:221
+#: html/index.php:217
 msgid "No session found!"
 msgstr "Aucune session trouvée !"
 
-#: html/index.php:256
+#: html/index.php:252
 msgid "LDAP schema check reported errors:"
 msgstr "La vérification des schémas LDAP a signalé des erreurs :"
 
-#: html/index.php:282
+#: html/index.php:278
 msgid "Please specify a valid username!"
 msgstr "Veuillez indiquer un nom d’utilisateur valide !"
 
-#: html/index.php:285
+#: html/index.php:281
 msgid "Please specify your password!"
 msgstr "Veuillez introduire votre mot de passe !"
 
-#: html/index.php:304
+#: html/index.php:300
 msgid "Please check the username/password combination."
 msgstr "Veuillez vérifier le nom d'utilisateur et le mot de passe."
 
-#: html/index.php:337
+#: html/index.php:333
 msgid "Account locked. Please contact your system administrator!"
 msgstr "Compte verrouillé. Veuillez contacter votre administrateur système !"
 
-#: html/index.php:440
+#: html/index.php:436
 #, php-format
 msgid "CAS user \"%s\" could not be found in the LDAP"
-msgstr "L'utilisateur CAS \"%s\" n'existe pas dans l'annuaire LDAP "
+msgstr "L’utilisateur CAS \"%s\" n’a pas été trouvé dans l’annuaire LDAP "
 
-#: html/index.php:450
+#: html/index.php:446
 #, php-format
 msgid "CAS user \"%s\" match several users in the LDAP"
-msgstr "L'utilisateur CAS \"%s\" correspond à plusieurs personnes  dans l'annuaire LDAP "
+msgstr "L’utilisateur CAS \"%s\" correspond à plusieurs utilisateurs dans l’annuaire LDAP "
 
-#: html/index.php:485
+#: html/index.php:481
 msgid ""
 "Your browser has cookies disabled. Please enable cookies and reload this "
 "page before logging in!"
diff --git a/locale/id/fusiondirectory.po b/locale/id/fusiondirectory.po
index a1a956cb44758779e8be73c7dcaeb1e91c78f963..3562752f3f56a8d7cfc9f580df2643efae3aa770 100644
--- a/locale/id/fusiondirectory.po
+++ b/locale/id/fusiondirectory.po
@@ -7,8 +7,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory-109\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2016-01-04 11:54+0100\n"
-"PO-Revision-Date: 2016-01-04 10:52+0000\n"
+"POT-Creation-Date: 2016-01-22 11:26+0100\n"
+"PO-Revision-Date: 2016-01-22 10:24+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n"
 "Language-Team: Indonesian (http://www.transifex.com/fusiondirectory/FusionDirectory-109/language/id/)\n"
 "MIME-Version: 1.0\n"
@@ -95,7 +95,7 @@ msgstr ""
 
 #: plugins/admin/groups/class_roleGeneric.inc:78
 #: plugins/admin/users/class_userManagement.inc:42
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:29
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:27
 #: setup/class_setupStep_Migrate.inc:871
 msgid "Users"
 msgstr ""
@@ -204,10 +204,10 @@ msgid "Only allow this group to connect to this list of hosts"
 msgstr ""
 
 #: plugins/admin/groups/class_group.inc:181
-#: plugins/personal/posix/class_posixAccount.inc:458 include/functions.inc:791
-#: include/functions.inc:2545 include/class_xml.inc:55
+#: plugins/personal/posix/class_posixAccount.inc:458 include/functions.inc:794
+#: include/functions.inc:2548 include/class_xml.inc:55
 #: include/simpleplugin/class_simpleTabs.inc:325 html/index.php:56
-#: html/index.php:62 html/index.php:485 html/class_passwordRecovery.inc:378
+#: html/index.php:62 html/index.php:481 html/class_passwordRecovery.inc:378
 #: setup/class_setupStep_Migrate.inc:572
 #: setup/class_setupStep_Migrate.inc:1083
 #: setup/class_setupStep_Migrate.inc:1202
@@ -250,7 +250,7 @@ msgstr ""
 msgid "Objects member of this group"
 msgstr ""
 
-#: plugins/admin/groups/class_ogroup.inc:317
+#: plugins/admin/groups/class_ogroup.inc:318
 msgid ""
 "Putting both workstations and terminals in the same group is not allowed"
 msgstr ""
@@ -873,19 +873,19 @@ msgstr ""
 msgid "Statistics"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:30
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:28
 msgid "Statistics about users"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:41
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:39
 msgid "Users statistics"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:46
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:44
 msgid "Groups statistics"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:51
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:49
 #: plugins/addons/dashboard/users_accounts.tpl.c:8
 msgid "Expired accounts"
 msgstr ""
@@ -2106,11 +2106,11 @@ msgstr ""
 #: include/class_config.inc:479 include/class_msgPool.inc:215
 #: include/class_msgPool.inc:235 include/class_msgPool.inc:265
 #: include/class_msgPool.inc:682 include/class_msgPool.inc:713
-#: include/class_msgPool.inc:740 include/functions.inc:3075
-#: include/functions.inc:3096 include/functions.inc:3126
-#: include/functions.inc:3134 include/functions.inc:3146
-#: include/functions.inc:3150 include/functions.inc:3157
-#: include/functions.inc:3166 include/functions.inc:3228
+#: include/class_msgPool.inc:740 include/functions.inc:3106
+#: include/functions.inc:3127 include/functions.inc:3157
+#: include/functions.inc:3165 include/functions.inc:3177
+#: include/functions.inc:3181 include/functions.inc:3188
+#: include/functions.inc:3197 include/functions.inc:3259
 #: include/class_msg_dialog.inc:128 include/class_xml.inc:58
 #: include/class_plugin.inc:1663 include/class_CopyPasteHandler.inc:278
 #: include/simpleplugin/class_dialogAttributes.inc:733
@@ -2121,11 +2121,12 @@ msgstr ""
 #: include/simpleplugin/class_attribute.inc:1877
 #: include/simpleplugin/class_attribute.inc:1879
 #: include/simpleplugin/class_simpleTabs.inc:90
+#: include/simpleplugin/class_simpleTabs.inc:405
 #: include/password-methods/class_password-methods-sasl.inc:60
 #: include/password-methods/class_password-methods-sasl.inc:86
-#: include/password-methods/class_password-methods.inc:434
-#: include/password-methods/class_password-methods.inc:444
-#: include/class_SnapshotHandler.inc:415 html/index.php:438 html/index.php:448
+#: include/password-methods/class_password-methods.inc:437
+#: include/password-methods/class_password-methods.inc:447
+#: include/class_SnapshotHandler.inc:415 html/index.php:434 html/index.php:444
 #: setup/class_setupStep_Migrate.inc:935
 #: ihtml/themes/default/msg_dialog.tpl.c:2 setup/setup_checks.tpl.c:5
 msgid "Error"
@@ -2244,8 +2245,8 @@ msgid "XML error in fusiondirectory.conf: %s at line %d"
 msgstr ""
 
 #: include/class_config.inc:162 include/class_config.inc:300
-#: include/class_config.inc:1001 include/class_config.inc:1014
-#: include/functions.inc:660 include/class_timezone.inc:51
+#: include/class_config.inc:985 include/class_config.inc:998
+#: include/functions.inc:663 include/class_timezone.inc:51
 #: include/password-methods/class_password-methods-sha.inc:71
 #: include/password-methods/class_password-methods-ssha.inc:75
 #: include/password-methods/class_password-methods-ssha.inc:91
@@ -2262,16 +2263,16 @@ msgid ""
 msgstr ""
 
 #: include/class_config.inc:337 include/class_ldap.inc:917
-#: include/class_ldap.inc:1371 include/functions.inc:523
-#: include/functions.inc:675 include/functions.inc:722
-#: include/functions.inc:783 include/functions.inc:838
-#: include/functions.inc:2965 include/simpleplugin/class_simplePlugin.inc:545
+#: include/class_ldap.inc:1371 include/functions.inc:526
+#: include/functions.inc:678 include/functions.inc:725
+#: include/functions.inc:786 include/functions.inc:841
+#: include/functions.inc:2985 include/simpleplugin/class_simplePlugin.inc:545
 #: include/simpleplugin/class_attribute.inc:2895
-#: include/password-methods/class_password-methods.inc:196
+#: include/password-methods/class_password-methods.inc:199
 #: include/class_SnapshotHandler.inc:50 include/class_SnapshotHandler.inc:244
 #: include/class_SnapshotHandler.inc:277 include/class_SnapshotHandler.inc:292
 #: include/class_SnapshotHandler.inc:422 include/class_SnapshotHandler.inc:425
-#: html/index.php:364 html/class_passwordRecovery.inc:497
+#: html/index.php:360 html/class_passwordRecovery.inc:497
 #: setup/class_setupStep_Migrate.inc:451
 #: setup/class_setupStep_Migrate.inc:1130
 msgid "LDAP error"
@@ -2286,25 +2287,25 @@ msgstr ""
 msgid "The selected mail method (class %s) is not available"
 msgstr ""
 
-#: include/class_config.inc:1002
+#: include/class_config.inc:986
 #, php-format
 msgid ""
 "The snapshot functionality is enabled, but the required variable '%s' is not"
 " set."
 msgstr ""
 
-#: include/class_config.inc:1015
+#: include/class_config.inc:999
 #, php-format
 msgid ""
 "The snapshot functionality is enabled, but the required compression module "
 "is missing. Please install '%s'."
 msgstr ""
 
-#: include/class_config.inc:1120
+#: include/class_config.inc:1104
 msgid "All categories"
 msgstr ""
 
-#: include/class_config.inc:1247
+#: include/class_config.inc:1231
 msgid "My account"
 msgstr ""
 
@@ -2318,10 +2319,10 @@ msgid "LDAP performance is poor: last query took about %.2fs!"
 msgstr ""
 
 #: include/class_ldap.inc:868 include/class_ldap.inc:904
-#: include/functions.inc:565 include/functions.inc:650
-#: include/functions.inc:770 include/functions.inc:1189
-#: include/functions.inc:2272 include/functions.inc:2314
-#: include/functions.inc:2343 include/class_session.inc:50
+#: include/functions.inc:568 include/functions.inc:653
+#: include/functions.inc:773 include/functions.inc:1192
+#: include/functions.inc:2275 include/functions.inc:2317
+#: include/functions.inc:2346 include/class_session.inc:50
 #: include/class_session.inc:87 include/class_session.inc:125
 #: include/class_log.inc:96 include/class_acl.inc:118
 msgid "Internal error"
@@ -2947,7 +2948,7 @@ msgid ""
 "Fatal error: cannot instantiate class '%s' - try running '%s' to fix this"
 msgstr ""
 
-#: include/functions.inc:493 include/functions.inc:3263
+#: include/functions.inc:496 include/functions.inc:3294
 #: include/class_xml.inc:61 include/simpleplugin/class_simplePlugin.inc:263
 #: include/simpleplugin/class_simplePlugin.inc:268
 #: include/simpleplugin/class_simplePlugin.inc:280
@@ -2955,246 +2956,246 @@ msgstr ""
 msgid "Fatal error"
 msgstr ""
 
-#: include/functions.inc:494
+#: include/functions.inc:497
 #, php-format
 msgid "FATAL: Error when connecting the LDAP. Server said '%s'."
 msgstr ""
 
-#: include/functions.inc:565
+#: include/functions.inc:568
 msgid ""
 "Login (uid) is not unique inside the LDAP tree. Please contact your "
 "administrator."
 msgstr ""
 
-#: include/functions.inc:598
+#: include/functions.inc:601
 msgid "Authentication error"
 msgstr ""
 
-#: include/functions.inc:599
+#: include/functions.inc:602
 msgid ""
 "It seems your user password has expired. Please use <a "
 "href=\"recovery.php\">password recovery</a> to change it."
 msgstr ""
 
-#: include/functions.inc:650 include/functions.inc:770
+#: include/functions.inc:653 include/functions.inc:773
 msgid "Error while adding a lock. Contact the developers!"
 msgstr ""
 
-#: include/functions.inc:660
+#: include/functions.inc:663
 #, php-format
 msgid ""
 "Cannot create locking information in LDAP tree. Please contact your "
 "administrator!"
 msgstr ""
 
-#: include/functions.inc:660
+#: include/functions.inc:663
 #, php-format
 msgid "LDAP server returned: %s"
 msgstr ""
 
-#: include/functions.inc:791
+#: include/functions.inc:794
 msgid ""
 "Found multiple locks for object to be locked. This should not happen - "
 "cleaning up multiple references."
 msgstr ""
 
-#: include/functions.inc:1109
+#: include/functions.inc:1112
 #, php-format
 msgid "The size limit of %d entries is exceed!"
 msgstr ""
 
-#: include/functions.inc:1111
+#: include/functions.inc:1114
 #, php-format
 msgid ""
 "Set the new size limit to %s and show me this message if the limit still "
 "exceeds"
 msgstr ""
 
-#: include/functions.inc:1128
+#: include/functions.inc:1131
 msgid "Configure"
 msgstr ""
 
-#: include/functions.inc:1133
+#: include/functions.inc:1136
 msgid "incomplete"
 msgstr ""
 
-#: include/functions.inc:1538
+#: include/functions.inc:1541
 msgid "Continue anyway"
 msgstr ""
 
-#: include/functions.inc:1540
+#: include/functions.inc:1543
 msgid "Edit anyway"
 msgstr ""
 
-#: include/functions.inc:1542
+#: include/functions.inc:1545
 #, php-format
 msgid "You're going to edit the LDAP entry/entries %s"
 msgstr ""
 
-#: include/functions.inc:1796
+#: include/functions.inc:1799
 msgid "Entries per page"
 msgstr ""
 
-#: include/functions.inc:1827 include/class_filter.inc:353
+#: include/functions.inc:1830 include/class_filter.inc:353
 msgid "Apply filter"
 msgstr ""
 
-#: include/functions.inc:2095
+#: include/functions.inc:2098
 #, php-format
 msgid "%sB"
 msgstr ""
 
-#: include/functions.inc:2096
+#: include/functions.inc:2099
 #, php-format
 msgid "%sKiB"
 msgstr ""
 
-#: include/functions.inc:2097
+#: include/functions.inc:2100
 #, php-format
 msgid "%sMiB"
 msgstr ""
 
-#: include/functions.inc:2098
+#: include/functions.inc:2101
 #, php-format
 msgid "%sGiB"
 msgstr ""
 
-#: include/functions.inc:2099
+#: include/functions.inc:2102
 #, php-format
 msgid "%sTiB"
 msgstr ""
 
-#: include/functions.inc:2100
+#: include/functions.inc:2103
 #, php-format
 msgid "%sPiB"
 msgstr ""
 
-#: include/functions.inc:2101
+#: include/functions.inc:2104
 #, php-format
 msgid "%sEiB"
 msgstr ""
 
-#: include/functions.inc:2102
+#: include/functions.inc:2105
 #, php-format
 msgid "%sZiB"
 msgstr ""
 
-#: include/functions.inc:2103
+#: include/functions.inc:2106
 #, php-format
 msgid "%sYiB"
 msgstr ""
 
-#: include/functions.inc:2135 include/class_filter.inc:315
+#: include/functions.inc:2138 include/class_filter.inc:315
 msgid "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
 msgstr ""
 
-#: include/functions.inc:2272
+#: include/functions.inc:2275
 #, php-format
 msgid ""
 "File '%s' could not be deleted. Try fusiondirectory-setup --check-"
 "directories to fix permissions."
 msgstr ""
 
-#: include/functions.inc:2314
+#: include/functions.inc:2317
 msgid "Cannot write to revision file!"
 msgstr ""
 
-#: include/functions.inc:2343
+#: include/functions.inc:2346
 msgid "Cannot read to revision file!"
 msgstr ""
 
-#: include/functions.inc:2545
+#: include/functions.inc:2548
 msgid "'nextIdHook' is not available. Using default base!"
 msgstr ""
 
-#: include/functions.inc:2563
+#: include/functions.inc:2566
 msgid "LDAP warning"
 msgstr ""
 
-#: include/functions.inc:2563
+#: include/functions.inc:2566
 msgid "Cannot get schema information from server. No schema check possible!"
 msgstr ""
 
-#: include/functions.inc:2581
+#: include/functions.inc:2584
 msgid ""
 "Used to lock currently edited entries to avoid multiple changes at the same "
 "time."
 msgstr ""
 
-#: include/functions.inc:2593
+#: include/functions.inc:2596
 #, php-format
 msgid "Missing required object class '%s'!"
 msgstr ""
 
-#: include/functions.inc:2596
+#: include/functions.inc:2599
 #, php-format
 msgid "Missing optional object class '%s'!"
 msgstr ""
 
-#: include/functions.inc:2600
+#: include/functions.inc:2603
 #, php-format
 msgid "Class(es) available"
 msgstr ""
 
-#: include/functions.inc:2620
+#: include/functions.inc:2623
 msgid ""
 "You have installed the mixed groups plugin, but your schema configuration "
 "does not support this."
 msgstr ""
 
-#: include/functions.inc:2621
+#: include/functions.inc:2624
 msgid ""
 "In order to use mixed groups the objectClass \"posixGroup\" must be "
 "AUXILIARY"
 msgstr ""
 
-#: include/functions.inc:2624
+#: include/functions.inc:2627
 msgid ""
 "Your schema is configured to support mixed groups, but this plugin is not "
 "present."
 msgstr ""
 
-#: include/functions.inc:2625
+#: include/functions.inc:2628
 msgid "The objectClass \"posixGroup\" must be STRUCTURAL"
 msgstr ""
 
-#: include/functions.inc:3075 include/functions.inc:3096
-#: include/functions.inc:3134 include/functions.inc:3146
-#: include/functions.inc:3150 include/functions.inc:3157
-#: include/functions.inc:3166
+#: include/functions.inc:3106 include/functions.inc:3127
+#: include/functions.inc:3165 include/functions.inc:3177
+#: include/functions.inc:3181 include/functions.inc:3188
+#: include/functions.inc:3197
 msgid "Cannot allocate a free ID:"
 msgstr ""
 
-#: include/functions.inc:3075
+#: include/functions.inc:3106
 msgid "unknown idAllocation method!"
 msgstr ""
 
-#: include/functions.inc:3096
+#: include/functions.inc:3127
 #, php-format
 msgid "%sPoolMin >= %sPoolMax!"
 msgstr ""
 
-#: include/functions.inc:3126
+#: include/functions.inc:3157
 msgid "Cannot create sambaUnixIdPool entry!"
 msgstr ""
 
-#: include/functions.inc:3134
+#: include/functions.inc:3165
 msgid "sambaUnixIdPool is not unique!"
 msgstr ""
 
-#: include/functions.inc:3146 include/functions.inc:3150
+#: include/functions.inc:3177 include/functions.inc:3181
 msgid "no ID available!"
 msgstr ""
 
-#: include/functions.inc:3166
+#: include/functions.inc:3197
 msgid "maximum tries exceeded!"
 msgstr ""
 
-#: include/functions.inc:3228
+#: include/functions.inc:3259
 msgid "Cannot allocate a free ID!"
 msgstr ""
 
-#: include/functions.inc:3264
+#: include/functions.inc:3295
 #, php-format
 msgid "Cannot locate file '%s' - please run '%s' to fix this"
 msgstr ""
@@ -3597,6 +3598,11 @@ msgstr ""
 msgid "Delete process has been canceled by plugin '%s': %s"
 msgstr ""
 
+#: include/simpleplugin/class_simpleTabs.inc:405
+#, php-format
+msgid "Move from \"%s\" to \"%s\" failed"
+msgstr ""
+
 #: include/class_timezone.inc:52
 #, php-format
 msgid "The timezone setting \"%s\" in your configuration is not valid."
@@ -3659,63 +3665,63 @@ msgid ""
 "fusiondirectory-setup --check-config to fix this."
 msgstr ""
 
-#: html/index.php:175
+#: html/index.php:171
 msgid "Smarty error"
 msgstr ""
 
-#: html/index.php:177
+#: html/index.php:173
 #, php-format
 msgid "Directory \"%s\" specified as compile directory is not accessible!"
 msgstr ""
 
-#: html/index.php:212
+#: html/index.php:208
 msgid "Your FusionDirectory session has expired!"
 msgstr ""
 
-#: html/index.php:215
+#: html/index.php:211
 msgid "Your IP has changed!"
 msgstr ""
 
-#: html/index.php:218
+#: html/index.php:214
 #, php-format
 msgid "Invalid plugin parameter \"%s\"!"
 msgstr ""
 
-#: html/index.php:221
+#: html/index.php:217
 msgid "No session found!"
 msgstr ""
 
-#: html/index.php:256
+#: html/index.php:252
 msgid "LDAP schema check reported errors:"
 msgstr ""
 
-#: html/index.php:282
+#: html/index.php:278
 msgid "Please specify a valid username!"
 msgstr ""
 
-#: html/index.php:285
+#: html/index.php:281
 msgid "Please specify your password!"
 msgstr ""
 
-#: html/index.php:304
+#: html/index.php:300
 msgid "Please check the username/password combination."
 msgstr ""
 
-#: html/index.php:337
+#: html/index.php:333
 msgid "Account locked. Please contact your system administrator!"
 msgstr ""
 
-#: html/index.php:440
+#: html/index.php:436
 #, php-format
 msgid "CAS user \"%s\" could not be found in the LDAP"
 msgstr ""
 
-#: html/index.php:450
+#: html/index.php:446
 #, php-format
 msgid "CAS user \"%s\" match several users in the LDAP"
 msgstr ""
 
-#: html/index.php:485
+#: html/index.php:481
 msgid ""
 "Your browser has cookies disabled. Please enable cookies and reload this "
 "page before logging in!"
diff --git a/locale/it_IT/fusiondirectory.po b/locale/it_IT/fusiondirectory.po
index e7fdbfd7226e07255f1285ef160534ca98630af5..3f161d59ef2e967aae6df2850cefe6d340bd8e74 100644
--- a/locale/it_IT/fusiondirectory.po
+++ b/locale/it_IT/fusiondirectory.po
@@ -9,9 +9,9 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory-109\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2016-01-04 11:54+0100\n"
-"PO-Revision-Date: 2016-01-05 10:36+0000\n"
-"Last-Translator: Penati <penati@avaya.com>\n"
+"POT-Creation-Date: 2016-01-22 11:26+0100\n"
+"PO-Revision-Date: 2016-01-22 10:24+0000\n"
+"Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n"
 "Language-Team: Italian (Italy) (http://www.transifex.com/fusiondirectory/FusionDirectory-109/language/it_IT/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -97,7 +97,7 @@ msgstr "Numero di Fax"
 
 #: plugins/admin/groups/class_roleGeneric.inc:78
 #: plugins/admin/users/class_userManagement.inc:42
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:29
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:27
 #: setup/class_setupStep_Migrate.inc:871
 msgid "Users"
 msgstr "Utenti"
@@ -206,10 +206,10 @@ msgid "Only allow this group to connect to this list of hosts"
 msgstr "Consenti all'utente di connettersi solo a questo elenco di host "
 
 #: plugins/admin/groups/class_group.inc:181
-#: plugins/personal/posix/class_posixAccount.inc:458 include/functions.inc:791
-#: include/functions.inc:2545 include/class_xml.inc:55
+#: plugins/personal/posix/class_posixAccount.inc:458 include/functions.inc:794
+#: include/functions.inc:2548 include/class_xml.inc:55
 #: include/simpleplugin/class_simpleTabs.inc:325 html/index.php:56
-#: html/index.php:62 html/index.php:485 html/class_passwordRecovery.inc:378
+#: html/index.php:62 html/index.php:481 html/class_passwordRecovery.inc:378
 #: setup/class_setupStep_Migrate.inc:572
 #: setup/class_setupStep_Migrate.inc:1083
 #: setup/class_setupStep_Migrate.inc:1202
@@ -252,7 +252,7 @@ msgstr "Oggetti membri"
 msgid "Objects member of this group"
 msgstr "Oggetti membro di questo gruppo"
 
-#: plugins/admin/groups/class_ogroup.inc:317
+#: plugins/admin/groups/class_ogroup.inc:318
 msgid ""
 "Putting both workstations and terminals in the same group is not allowed"
 msgstr "Non é consentito mettre workstations e terminali nello stesso gruppo"
@@ -875,19 +875,19 @@ msgstr "Reporting"
 msgid "Statistics"
 msgstr "Statistiche"
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:30
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:28
 msgid "Statistics about users"
 msgstr "Statistiche sugli utenti"
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:41
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:39
 msgid "Users statistics"
 msgstr "Statistiche utenti"
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:46
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:44
 msgid "Groups statistics"
 msgstr "Gruppi di statistiche"
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:51
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:49
 #: plugins/addons/dashboard/users_accounts.tpl.c:8
 msgid "Expired accounts"
 msgstr "Account scaduti"
@@ -2108,11 +2108,11 @@ msgstr "Seleziona tutto"
 #: include/class_config.inc:479 include/class_msgPool.inc:215
 #: include/class_msgPool.inc:235 include/class_msgPool.inc:265
 #: include/class_msgPool.inc:682 include/class_msgPool.inc:713
-#: include/class_msgPool.inc:740 include/functions.inc:3075
-#: include/functions.inc:3096 include/functions.inc:3126
-#: include/functions.inc:3134 include/functions.inc:3146
-#: include/functions.inc:3150 include/functions.inc:3157
-#: include/functions.inc:3166 include/functions.inc:3228
+#: include/class_msgPool.inc:740 include/functions.inc:3106
+#: include/functions.inc:3127 include/functions.inc:3157
+#: include/functions.inc:3165 include/functions.inc:3177
+#: include/functions.inc:3181 include/functions.inc:3188
+#: include/functions.inc:3197 include/functions.inc:3259
 #: include/class_msg_dialog.inc:128 include/class_xml.inc:58
 #: include/class_plugin.inc:1663 include/class_CopyPasteHandler.inc:278
 #: include/simpleplugin/class_dialogAttributes.inc:733
@@ -2123,11 +2123,12 @@ msgstr "Seleziona tutto"
 #: include/simpleplugin/class_attribute.inc:1877
 #: include/simpleplugin/class_attribute.inc:1879
 #: include/simpleplugin/class_simpleTabs.inc:90
+#: include/simpleplugin/class_simpleTabs.inc:405
 #: include/password-methods/class_password-methods-sasl.inc:60
 #: include/password-methods/class_password-methods-sasl.inc:86
-#: include/password-methods/class_password-methods.inc:434
-#: include/password-methods/class_password-methods.inc:444
-#: include/class_SnapshotHandler.inc:415 html/index.php:438 html/index.php:448
+#: include/password-methods/class_password-methods.inc:437
+#: include/password-methods/class_password-methods.inc:447
+#: include/class_SnapshotHandler.inc:415 html/index.php:434 html/index.php:444
 #: setup/class_setupStep_Migrate.inc:935
 #: ihtml/themes/default/msg_dialog.tpl.c:2 setup/setup_checks.tpl.c:5
 msgid "Error"
@@ -2246,8 +2247,8 @@ msgid "XML error in fusiondirectory.conf: %s at line %d"
 msgstr "Errore XML nel file fusiondirectory.conf: %s alla linea %d"
 
 #: include/class_config.inc:162 include/class_config.inc:300
-#: include/class_config.inc:1001 include/class_config.inc:1014
-#: include/functions.inc:660 include/class_timezone.inc:51
+#: include/class_config.inc:985 include/class_config.inc:998
+#: include/functions.inc:663 include/class_timezone.inc:51
 #: include/password-methods/class_password-methods-sha.inc:71
 #: include/password-methods/class_password-methods-ssha.inc:75
 #: include/password-methods/class_password-methods-ssha.inc:91
@@ -2264,16 +2265,16 @@ msgid ""
 msgstr "Sembrerebbe che stiate provando a decodificare qualcosa che non é codificato : %s<br/>\\nSi prega di controllare che non si stia utilizzando un file fusiondirectory.secrets mentre le password non sono crittografate."
 
 #: include/class_config.inc:337 include/class_ldap.inc:917
-#: include/class_ldap.inc:1371 include/functions.inc:523
-#: include/functions.inc:675 include/functions.inc:722
-#: include/functions.inc:783 include/functions.inc:838
-#: include/functions.inc:2965 include/simpleplugin/class_simplePlugin.inc:545
+#: include/class_ldap.inc:1371 include/functions.inc:526
+#: include/functions.inc:678 include/functions.inc:725
+#: include/functions.inc:786 include/functions.inc:841
+#: include/functions.inc:2985 include/simpleplugin/class_simplePlugin.inc:545
 #: include/simpleplugin/class_attribute.inc:2895
-#: include/password-methods/class_password-methods.inc:196
+#: include/password-methods/class_password-methods.inc:199
 #: include/class_SnapshotHandler.inc:50 include/class_SnapshotHandler.inc:244
 #: include/class_SnapshotHandler.inc:277 include/class_SnapshotHandler.inc:292
 #: include/class_SnapshotHandler.inc:422 include/class_SnapshotHandler.inc:425
-#: html/index.php:364 html/class_passwordRecovery.inc:497
+#: html/index.php:360 html/class_passwordRecovery.inc:497
 #: setup/class_setupStep_Migrate.inc:451
 #: setup/class_setupStep_Migrate.inc:1130
 msgid "LDAP error"
@@ -2288,25 +2289,25 @@ msgstr "Errore di connessione al server LDAP. Contatta l'amministratore del sist
 msgid "The selected mail method (class %s) is not available"
 msgstr "Il metodo mail (classe %s) selezionato non è disponibile "
 
-#: include/class_config.inc:1002
+#: include/class_config.inc:986
 #, php-format
 msgid ""
 "The snapshot functionality is enabled, but the required variable '%s' is not"
 " set."
 msgstr "La funzione 'copia istantanea' è attivata, ma la variabile richiesta '%s' non è configurata."
 
-#: include/class_config.inc:1015
+#: include/class_config.inc:999
 #, php-format
 msgid ""
 "The snapshot functionality is enabled, but the required compression module "
 "is missing. Please install '%s'."
 msgstr "La funzione 'copia istantanea' è attivata, ma il modulo di compressione richiesto è introvabile. Per favore installa '%s'."
 
-#: include/class_config.inc:1120
+#: include/class_config.inc:1104
 msgid "All categories"
 msgstr "Tutte le categorie"
 
-#: include/class_config.inc:1247
+#: include/class_config.inc:1231
 msgid "My account"
 msgstr "Identità personale"
 
@@ -2320,10 +2321,10 @@ msgid "LDAP performance is poor: last query took about %.2fs!"
 msgstr "Il rendimento del tuo annuario LDAP è scarso: l'ultima richiesta è durata %.2fs !"
 
 #: include/class_ldap.inc:868 include/class_ldap.inc:904
-#: include/functions.inc:565 include/functions.inc:650
-#: include/functions.inc:770 include/functions.inc:1189
-#: include/functions.inc:2272 include/functions.inc:2314
-#: include/functions.inc:2343 include/class_session.inc:50
+#: include/functions.inc:568 include/functions.inc:653
+#: include/functions.inc:773 include/functions.inc:1192
+#: include/functions.inc:2275 include/functions.inc:2317
+#: include/functions.inc:2346 include/class_session.inc:50
 #: include/class_session.inc:87 include/class_session.inc:125
 #: include/class_log.inc:96 include/class_acl.inc:118
 msgid "Internal error"
@@ -2949,7 +2950,7 @@ msgid ""
 "Fatal error: cannot instantiate class '%s' - try running '%s' to fix this"
 msgstr "Errore fatale: impossibile inizializzare la classe '%s' - esegui '%s' per porre rimedio al problema"
 
-#: include/functions.inc:493 include/functions.inc:3263
+#: include/functions.inc:496 include/functions.inc:3294
 #: include/class_xml.inc:61 include/simpleplugin/class_simplePlugin.inc:263
 #: include/simpleplugin/class_simplePlugin.inc:268
 #: include/simpleplugin/class_simplePlugin.inc:280
@@ -2957,246 +2958,246 @@ msgstr "Errore fatale: impossibile inizializzare la classe '%s' - esegui '%s' pe
 msgid "Fatal error"
 msgstr "Errore fatale"
 
-#: include/functions.inc:494
+#: include/functions.inc:497
 #, php-format
 msgid "FATAL: Error when connecting the LDAP. Server said '%s'."
 msgstr "Fatale: Errore durante la connessione al server LDAP. Il server dice: '%s'"
 
-#: include/functions.inc:565
+#: include/functions.inc:568
 msgid ""
 "Login (uid) is not unique inside the LDAP tree. Please contact your "
 "administrator."
 msgstr "Il login (uid) non é unico all'interno della struttura LDAP. Per favore contattare il vostro amministratore di sistema."
 
-#: include/functions.inc:598
+#: include/functions.inc:601
 msgid "Authentication error"
 msgstr "Errore di autentificazione"
 
-#: include/functions.inc:599
+#: include/functions.inc:602
 msgid ""
 "It seems your user password has expired. Please use <a "
 "href=\"recovery.php\">password recovery</a> to change it."
 msgstr "Sembrerebbe che la password sia scaduta. Per favore utilizzare <a href=\"recovery.php\"> recupero password </a> per cambiarla"
 
-#: include/functions.inc:650 include/functions.inc:770
+#: include/functions.inc:653 include/functions.inc:773
 msgid "Error while adding a lock. Contact the developers!"
 msgstr "Errore all'aggiunta di un bloccaggio. Contatta i programmatori !"
 
-#: include/functions.inc:660
+#: include/functions.inc:663
 #, php-format
 msgid ""
 "Cannot create locking information in LDAP tree. Please contact your "
 "administrator!"
 msgstr "Impossibile creare i dati per il bloccaggio nell'annuario LDAP. Contatta l'amministratore del sistema !"
 
-#: include/functions.inc:660
+#: include/functions.inc:663
 #, php-format
 msgid "LDAP server returned: %s"
 msgstr "Il server LDAP ha risposto: %s"
 
-#: include/functions.inc:791
+#: include/functions.inc:794
 msgid ""
 "Found multiple locks for object to be locked. This should not happen - "
 "cleaning up multiple references."
 msgstr "Sono stati trovati molteplici bloccaggi per lo stesso oggetto da bloccare. Questo non dovrebbe mai succedere. Ripulire le referenze multiple."
 
-#: include/functions.inc:1109
+#: include/functions.inc:1112
 #, php-format
 msgid "The size limit of %d entries is exceed!"
 msgstr "Il valore limite dell'entries %d è stato superato !"
 
-#: include/functions.inc:1111
+#: include/functions.inc:1114
 #, php-format
 msgid ""
 "Set the new size limit to %s and show me this message if the limit still "
 "exceeds"
 msgstr "Impostare il nuovo valore limite a %s et mostrare questo messaggio se lo stesso valore è superato"
 
-#: include/functions.inc:1128
+#: include/functions.inc:1131
 msgid "Configure"
 msgstr "Configura"
 
-#: include/functions.inc:1133
+#: include/functions.inc:1136
 msgid "incomplete"
 msgstr "incompleto"
 
-#: include/functions.inc:1538
+#: include/functions.inc:1541
 msgid "Continue anyway"
 msgstr "Prosegui comunque"
 
-#: include/functions.inc:1540
+#: include/functions.inc:1543
 msgid "Edit anyway"
 msgstr "Modifica malgrado l'avvertimento"
 
-#: include/functions.inc:1542
+#: include/functions.inc:1545
 #, php-format
 msgid "You're going to edit the LDAP entry/entries %s"
 msgstr "Sei sul punto di modificare la/le voce/voci %s"
 
-#: include/functions.inc:1796
+#: include/functions.inc:1799
 msgid "Entries per page"
 msgstr "Voci per pagina"
 
-#: include/functions.inc:1827 include/class_filter.inc:353
+#: include/functions.inc:1830 include/class_filter.inc:353
 msgid "Apply filter"
 msgstr "Applica filtro"
 
-#: include/functions.inc:2095
+#: include/functions.inc:2098
 #, php-format
 msgid "%sB"
 msgstr "%sB"
 
-#: include/functions.inc:2096
+#: include/functions.inc:2099
 #, php-format
 msgid "%sKiB"
 msgstr "%sKiB"
 
-#: include/functions.inc:2097
+#: include/functions.inc:2100
 #, php-format
 msgid "%sMiB"
 msgstr "%sMiB"
 
-#: include/functions.inc:2098
+#: include/functions.inc:2101
 #, php-format
 msgid "%sGiB"
 msgstr "%sGiB"
 
-#: include/functions.inc:2099
+#: include/functions.inc:2102
 #, php-format
 msgid "%sTiB"
 msgstr "%sTiB"
 
-#: include/functions.inc:2100
+#: include/functions.inc:2103
 #, php-format
 msgid "%sPiB"
 msgstr "%sPiB"
 
-#: include/functions.inc:2101
+#: include/functions.inc:2104
 #, php-format
 msgid "%sEiB"
 msgstr "%sPiB"
 
-#: include/functions.inc:2102
+#: include/functions.inc:2105
 #, php-format
 msgid "%sZiB"
 msgstr "%sZiB"
 
-#: include/functions.inc:2103
+#: include/functions.inc:2106
 #, php-format
 msgid "%sYiB"
 msgstr "%sYiB"
 
-#: include/functions.inc:2135 include/class_filter.inc:315
+#: include/functions.inc:2138 include/class_filter.inc:315
 msgid "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
 msgstr "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
 
-#: include/functions.inc:2272
+#: include/functions.inc:2275
 #, php-format
 msgid ""
 "File '%s' could not be deleted. Try fusiondirectory-setup --check-"
 "directories to fix permissions."
 msgstr "Il file '%s' non puó essere rimosso. Prova ad usare fusiondirectory-setup --check-directories per correggerne i privilegi di accesso."
 
-#: include/functions.inc:2314
+#: include/functions.inc:2317
 msgid "Cannot write to revision file!"
 msgstr "Impossibile scrivere il file di revisione !"
 
-#: include/functions.inc:2343
+#: include/functions.inc:2346
 msgid "Cannot read to revision file!"
 msgstr "Impossibile leggere il file di revisione !"
 
-#: include/functions.inc:2545
+#: include/functions.inc:2548
 msgid "'nextIdHook' is not available. Using default base!"
 msgstr "'prossimo Hook ID\" non é disponibile. Usa una base predefinita!"
 
-#: include/functions.inc:2563
+#: include/functions.inc:2566
 msgid "LDAP warning"
 msgstr "Avvertimento LDAP"
 
-#: include/functions.inc:2563
+#: include/functions.inc:2566
 msgid "Cannot get schema information from server. No schema check possible!"
 msgstr "Impossibile trovare informazioni sugli schemi a partire dal server. Nessuna verifica degli schemi è stata effettuata !"
 
-#: include/functions.inc:2581
+#: include/functions.inc:2584
 msgid ""
 "Used to lock currently edited entries to avoid multiple changes at the same "
 "time."
 msgstr "Usato per bloccare le entries attualmente modificate, al fine di evitare possibili cambiamenti multipli simultanei."
 
-#: include/functions.inc:2593
+#: include/functions.inc:2596
 #, php-format
 msgid "Missing required object class '%s'!"
 msgstr "L'oggetto di classe '%s' richiesto è mancante !"
 
-#: include/functions.inc:2596
+#: include/functions.inc:2599
 #, php-format
 msgid "Missing optional object class '%s'!"
 msgstr "L'oggetto di classe '%s' opzionale è mancante !"
 
-#: include/functions.inc:2600
+#: include/functions.inc:2603
 #, php-format
 msgid "Class(es) available"
 msgstr "Classe(i) disponibile(i)"
 
-#: include/functions.inc:2620
+#: include/functions.inc:2623
 msgid ""
 "You have installed the mixed groups plugin, but your schema configuration "
 "does not support this."
 msgstr "Avete installato il plugin di gruppi misti, ma la configurazione dello schema non supporta questo."
 
-#: include/functions.inc:2621
+#: include/functions.inc:2624
 msgid ""
 "In order to use mixed groups the objectClass \"posixGroup\" must be "
 "AUXILIARY"
 msgstr "Per usare gruppi misti l'objetClass \"posixGroup\" deve essere AUSILIARIO"
 
-#: include/functions.inc:2624
+#: include/functions.inc:2627
 msgid ""
 "Your schema is configured to support mixed groups, but this plugin is not "
 "present."
 msgstr "Il vostro schema é configurato per supportare gruppi misti, ma manca il plugin."
 
-#: include/functions.inc:2625
+#: include/functions.inc:2628
 msgid "The objectClass \"posixGroup\" must be STRUCTURAL"
 msgstr "L'objectClass \"posixGroup\" deve essere STRUTTURALE"
 
-#: include/functions.inc:3075 include/functions.inc:3096
-#: include/functions.inc:3134 include/functions.inc:3146
-#: include/functions.inc:3150 include/functions.inc:3157
-#: include/functions.inc:3166
+#: include/functions.inc:3106 include/functions.inc:3127
+#: include/functions.inc:3165 include/functions.inc:3177
+#: include/functions.inc:3181 include/functions.inc:3188
+#: include/functions.inc:3197
 msgid "Cannot allocate a free ID:"
 msgstr "Impossibile assegnare un ID libero:"
 
-#: include/functions.inc:3075
+#: include/functions.inc:3106
 msgid "unknown idAllocation method!"
 msgstr "Metodo idAllocation sconosciuto !"
 
-#: include/functions.inc:3096
+#: include/functions.inc:3127
 #, php-format
 msgid "%sPoolMin >= %sPoolMax!"
 msgstr "%sPoolMin >= %sPoolMax!"
 
-#: include/functions.inc:3126
+#: include/functions.inc:3157
 msgid "Cannot create sambaUnixIdPool entry!"
 msgstr "Impossibile creare la voce sambaUnixIdPool !"
 
-#: include/functions.inc:3134
+#: include/functions.inc:3165
 msgid "sambaUnixIdPool is not unique!"
 msgstr "sambaUnixIdPool non è univoco !"
 
-#: include/functions.inc:3146 include/functions.inc:3150
+#: include/functions.inc:3177 include/functions.inc:3181
 msgid "no ID available!"
 msgstr "nessun ID disponibile !"
 
-#: include/functions.inc:3166
+#: include/functions.inc:3197
 msgid "maximum tries exceeded!"
 msgstr "Il numero massimo di tentativi è stato superato"
 
-#: include/functions.inc:3228
+#: include/functions.inc:3259
 msgid "Cannot allocate a free ID!"
 msgstr "Impossibile assegnare un ID libero!"
 
-#: include/functions.inc:3264
+#: include/functions.inc:3295
 #, php-format
 msgid "Cannot locate file '%s' - please run '%s' to fix this"
 msgstr "Impossibile trovare il file '%s' - esegui '%s' per porre rimedio al problema"
@@ -3599,6 +3600,11 @@ msgstr "Non è stata trovata nessuna estensione per inizializzare '%s', verifica
 msgid "Delete process has been canceled by plugin '%s': %s"
 msgstr "La cancellazione è stata interrotta dall'estensione '%s': %s"
 
+#: include/simpleplugin/class_simpleTabs.inc:405
+#, php-format
+msgid "Move from \"%s\" to \"%s\" failed"
+msgstr ""
+
 #: include/class_timezone.inc:52
 #, php-format
 msgid "The timezone setting \"%s\" in your configuration is not valid."
@@ -3661,63 +3667,63 @@ msgid ""
 "fusiondirectory-setup --check-config to fix this."
 msgstr "La configurazione %s/%s di FusionDirectory non è leggibile. Esegui fusiondirectory-setup --check-config per risolvere questo problema."
 
-#: html/index.php:175
+#: html/index.php:171
 msgid "Smarty error"
 msgstr "Errore Smarty"
 
-#: html/index.php:177
+#: html/index.php:173
 #, php-format
 msgid "Directory \"%s\" specified as compile directory is not accessible!"
 msgstr "Il directory \"%s\" specificato come directory di compilazione non é accessibile!"
 
-#: html/index.php:212
+#: html/index.php:208
 msgid "Your FusionDirectory session has expired!"
 msgstr "La tua sessione in FusionDirectory è scaduta!"
 
-#: html/index.php:215
+#: html/index.php:211
 msgid "Your IP has changed!"
 msgstr "Il tuo IP è stato cambiato!"
 
-#: html/index.php:218
+#: html/index.php:214
 #, php-format
 msgid "Invalid plugin parameter \"%s\"!"
 msgstr "Parametro \"%s\" di plugin invalido"
 
-#: html/index.php:221
+#: html/index.php:217
 msgid "No session found!"
 msgstr "Nessuna sessione trovata!"
 
-#: html/index.php:256
+#: html/index.php:252
 msgid "LDAP schema check reported errors:"
 msgstr "Lo schema LDAP verifica gli errori riportati:"
 
-#: html/index.php:282
+#: html/index.php:278
 msgid "Please specify a valid username!"
 msgstr "Prego specifica un nome utente valido !"
 
-#: html/index.php:285
+#: html/index.php:281
 msgid "Please specify your password!"
 msgstr "Prego specifica la tua password !"
 
-#: html/index.php:304
+#: html/index.php:300
 msgid "Please check the username/password combination."
 msgstr "Verifica il nome utente e la password."
 
-#: html/index.php:337
+#: html/index.php:333
 msgid "Account locked. Please contact your system administrator!"
 msgstr "Conto bloccato. Contatta l'amministratore del sistema!"
 
-#: html/index.php:440
+#: html/index.php:436
 #, php-format
 msgid "CAS user \"%s\" could not be found in the LDAP"
 msgstr "Impossibile trovare l'utente \"%s\" CAS nell'annuario LDAP"
 
-#: html/index.php:450
+#: html/index.php:446
 #, php-format
 msgid "CAS user \"%s\" match several users in the LDAP"
 msgstr "L'utente CAS \"%s\" corrisponde a più utenti nell'annuario LDAP"
 
-#: html/index.php:485
+#: html/index.php:481
 msgid ""
 "Your browser has cookies disabled. Please enable cookies and reload this "
 "page before logging in!"
diff --git a/locale/lv/fusiondirectory.po b/locale/lv/fusiondirectory.po
index 2ed2ca894e4db78d1e4c00c8248ecf4a5eb240ef..1f15a8a91b028345c2fba58a2e258222d84702aa 100644
--- a/locale/lv/fusiondirectory.po
+++ b/locale/lv/fusiondirectory.po
@@ -7,8 +7,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory-109\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2016-01-04 11:54+0100\n"
-"PO-Revision-Date: 2016-01-04 10:52+0000\n"
+"POT-Creation-Date: 2016-01-22 11:26+0100\n"
+"PO-Revision-Date: 2016-01-22 10:24+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n"
 "Language-Team: Latvian (http://www.transifex.com/fusiondirectory/FusionDirectory-109/language/lv/)\n"
 "MIME-Version: 1.0\n"
@@ -95,7 +95,7 @@ msgstr "Faksa numurs"
 
 #: plugins/admin/groups/class_roleGeneric.inc:78
 #: plugins/admin/users/class_userManagement.inc:42
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:29
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:27
 #: setup/class_setupStep_Migrate.inc:871
 msgid "Users"
 msgstr "Lietotāji"
@@ -204,10 +204,10 @@ msgid "Only allow this group to connect to this list of hosts"
 msgstr ""
 
 #: plugins/admin/groups/class_group.inc:181
-#: plugins/personal/posix/class_posixAccount.inc:458 include/functions.inc:791
-#: include/functions.inc:2545 include/class_xml.inc:55
+#: plugins/personal/posix/class_posixAccount.inc:458 include/functions.inc:794
+#: include/functions.inc:2548 include/class_xml.inc:55
 #: include/simpleplugin/class_simpleTabs.inc:325 html/index.php:56
-#: html/index.php:62 html/index.php:485 html/class_passwordRecovery.inc:378
+#: html/index.php:62 html/index.php:481 html/class_passwordRecovery.inc:378
 #: setup/class_setupStep_Migrate.inc:572
 #: setup/class_setupStep_Migrate.inc:1083
 #: setup/class_setupStep_Migrate.inc:1202
@@ -250,7 +250,7 @@ msgstr ""
 msgid "Objects member of this group"
 msgstr ""
 
-#: plugins/admin/groups/class_ogroup.inc:317
+#: plugins/admin/groups/class_ogroup.inc:318
 msgid ""
 "Putting both workstations and terminals in the same group is not allowed"
 msgstr ""
@@ -873,19 +873,19 @@ msgstr ""
 msgid "Statistics"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:30
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:28
 msgid "Statistics about users"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:41
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:39
 msgid "Users statistics"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:46
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:44
 msgid "Groups statistics"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:51
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:49
 #: plugins/addons/dashboard/users_accounts.tpl.c:8
 msgid "Expired accounts"
 msgstr ""
@@ -2106,11 +2106,11 @@ msgstr ""
 #: include/class_config.inc:479 include/class_msgPool.inc:215
 #: include/class_msgPool.inc:235 include/class_msgPool.inc:265
 #: include/class_msgPool.inc:682 include/class_msgPool.inc:713
-#: include/class_msgPool.inc:740 include/functions.inc:3075
-#: include/functions.inc:3096 include/functions.inc:3126
-#: include/functions.inc:3134 include/functions.inc:3146
-#: include/functions.inc:3150 include/functions.inc:3157
-#: include/functions.inc:3166 include/functions.inc:3228
+#: include/class_msgPool.inc:740 include/functions.inc:3106
+#: include/functions.inc:3127 include/functions.inc:3157
+#: include/functions.inc:3165 include/functions.inc:3177
+#: include/functions.inc:3181 include/functions.inc:3188
+#: include/functions.inc:3197 include/functions.inc:3259
 #: include/class_msg_dialog.inc:128 include/class_xml.inc:58
 #: include/class_plugin.inc:1663 include/class_CopyPasteHandler.inc:278
 #: include/simpleplugin/class_dialogAttributes.inc:733
@@ -2121,11 +2121,12 @@ msgstr ""
 #: include/simpleplugin/class_attribute.inc:1877
 #: include/simpleplugin/class_attribute.inc:1879
 #: include/simpleplugin/class_simpleTabs.inc:90
+#: include/simpleplugin/class_simpleTabs.inc:405
 #: include/password-methods/class_password-methods-sasl.inc:60
 #: include/password-methods/class_password-methods-sasl.inc:86
-#: include/password-methods/class_password-methods.inc:434
-#: include/password-methods/class_password-methods.inc:444
-#: include/class_SnapshotHandler.inc:415 html/index.php:438 html/index.php:448
+#: include/password-methods/class_password-methods.inc:437
+#: include/password-methods/class_password-methods.inc:447
+#: include/class_SnapshotHandler.inc:415 html/index.php:434 html/index.php:444
 #: setup/class_setupStep_Migrate.inc:935
 #: ihtml/themes/default/msg_dialog.tpl.c:2 setup/setup_checks.tpl.c:5
 msgid "Error"
@@ -2244,8 +2245,8 @@ msgid "XML error in fusiondirectory.conf: %s at line %d"
 msgstr ""
 
 #: include/class_config.inc:162 include/class_config.inc:300
-#: include/class_config.inc:1001 include/class_config.inc:1014
-#: include/functions.inc:660 include/class_timezone.inc:51
+#: include/class_config.inc:985 include/class_config.inc:998
+#: include/functions.inc:663 include/class_timezone.inc:51
 #: include/password-methods/class_password-methods-sha.inc:71
 #: include/password-methods/class_password-methods-ssha.inc:75
 #: include/password-methods/class_password-methods-ssha.inc:91
@@ -2262,16 +2263,16 @@ msgid ""
 msgstr ""
 
 #: include/class_config.inc:337 include/class_ldap.inc:917
-#: include/class_ldap.inc:1371 include/functions.inc:523
-#: include/functions.inc:675 include/functions.inc:722
-#: include/functions.inc:783 include/functions.inc:838
-#: include/functions.inc:2965 include/simpleplugin/class_simplePlugin.inc:545
+#: include/class_ldap.inc:1371 include/functions.inc:526
+#: include/functions.inc:678 include/functions.inc:725
+#: include/functions.inc:786 include/functions.inc:841
+#: include/functions.inc:2985 include/simpleplugin/class_simplePlugin.inc:545
 #: include/simpleplugin/class_attribute.inc:2895
-#: include/password-methods/class_password-methods.inc:196
+#: include/password-methods/class_password-methods.inc:199
 #: include/class_SnapshotHandler.inc:50 include/class_SnapshotHandler.inc:244
 #: include/class_SnapshotHandler.inc:277 include/class_SnapshotHandler.inc:292
 #: include/class_SnapshotHandler.inc:422 include/class_SnapshotHandler.inc:425
-#: html/index.php:364 html/class_passwordRecovery.inc:497
+#: html/index.php:360 html/class_passwordRecovery.inc:497
 #: setup/class_setupStep_Migrate.inc:451
 #: setup/class_setupStep_Migrate.inc:1130
 msgid "LDAP error"
@@ -2286,25 +2287,25 @@ msgstr ""
 msgid "The selected mail method (class %s) is not available"
 msgstr ""
 
-#: include/class_config.inc:1002
+#: include/class_config.inc:986
 #, php-format
 msgid ""
 "The snapshot functionality is enabled, but the required variable '%s' is not"
 " set."
 msgstr ""
 
-#: include/class_config.inc:1015
+#: include/class_config.inc:999
 #, php-format
 msgid ""
 "The snapshot functionality is enabled, but the required compression module "
 "is missing. Please install '%s'."
 msgstr ""
 
-#: include/class_config.inc:1120
+#: include/class_config.inc:1104
 msgid "All categories"
 msgstr ""
 
-#: include/class_config.inc:1247
+#: include/class_config.inc:1231
 msgid "My account"
 msgstr ""
 
@@ -2318,10 +2319,10 @@ msgid "LDAP performance is poor: last query took about %.2fs!"
 msgstr ""
 
 #: include/class_ldap.inc:868 include/class_ldap.inc:904
-#: include/functions.inc:565 include/functions.inc:650
-#: include/functions.inc:770 include/functions.inc:1189
-#: include/functions.inc:2272 include/functions.inc:2314
-#: include/functions.inc:2343 include/class_session.inc:50
+#: include/functions.inc:568 include/functions.inc:653
+#: include/functions.inc:773 include/functions.inc:1192
+#: include/functions.inc:2275 include/functions.inc:2317
+#: include/functions.inc:2346 include/class_session.inc:50
 #: include/class_session.inc:87 include/class_session.inc:125
 #: include/class_log.inc:96 include/class_acl.inc:118
 msgid "Internal error"
@@ -2947,7 +2948,7 @@ msgid ""
 "Fatal error: cannot instantiate class '%s' - try running '%s' to fix this"
 msgstr ""
 
-#: include/functions.inc:493 include/functions.inc:3263
+#: include/functions.inc:496 include/functions.inc:3294
 #: include/class_xml.inc:61 include/simpleplugin/class_simplePlugin.inc:263
 #: include/simpleplugin/class_simplePlugin.inc:268
 #: include/simpleplugin/class_simplePlugin.inc:280
@@ -2955,246 +2956,246 @@ msgstr ""
 msgid "Fatal error"
 msgstr ""
 
-#: include/functions.inc:494
+#: include/functions.inc:497
 #, php-format
 msgid "FATAL: Error when connecting the LDAP. Server said '%s'."
 msgstr ""
 
-#: include/functions.inc:565
+#: include/functions.inc:568
 msgid ""
 "Login (uid) is not unique inside the LDAP tree. Please contact your "
 "administrator."
 msgstr ""
 
-#: include/functions.inc:598
+#: include/functions.inc:601
 msgid "Authentication error"
 msgstr ""
 
-#: include/functions.inc:599
+#: include/functions.inc:602
 msgid ""
 "It seems your user password has expired. Please use <a "
 "href=\"recovery.php\">password recovery</a> to change it."
 msgstr ""
 
-#: include/functions.inc:650 include/functions.inc:770
+#: include/functions.inc:653 include/functions.inc:773
 msgid "Error while adding a lock. Contact the developers!"
 msgstr ""
 
-#: include/functions.inc:660
+#: include/functions.inc:663
 #, php-format
 msgid ""
 "Cannot create locking information in LDAP tree. Please contact your "
 "administrator!"
 msgstr ""
 
-#: include/functions.inc:660
+#: include/functions.inc:663
 #, php-format
 msgid "LDAP server returned: %s"
 msgstr ""
 
-#: include/functions.inc:791
+#: include/functions.inc:794
 msgid ""
 "Found multiple locks for object to be locked. This should not happen - "
 "cleaning up multiple references."
 msgstr ""
 
-#: include/functions.inc:1109
+#: include/functions.inc:1112
 #, php-format
 msgid "The size limit of %d entries is exceed!"
 msgstr ""
 
-#: include/functions.inc:1111
+#: include/functions.inc:1114
 #, php-format
 msgid ""
 "Set the new size limit to %s and show me this message if the limit still "
 "exceeds"
 msgstr ""
 
-#: include/functions.inc:1128
+#: include/functions.inc:1131
 msgid "Configure"
 msgstr ""
 
-#: include/functions.inc:1133
+#: include/functions.inc:1136
 msgid "incomplete"
 msgstr ""
 
-#: include/functions.inc:1538
+#: include/functions.inc:1541
 msgid "Continue anyway"
 msgstr ""
 
-#: include/functions.inc:1540
+#: include/functions.inc:1543
 msgid "Edit anyway"
 msgstr ""
 
-#: include/functions.inc:1542
+#: include/functions.inc:1545
 #, php-format
 msgid "You're going to edit the LDAP entry/entries %s"
 msgstr ""
 
-#: include/functions.inc:1796
+#: include/functions.inc:1799
 msgid "Entries per page"
 msgstr ""
 
-#: include/functions.inc:1827 include/class_filter.inc:353
+#: include/functions.inc:1830 include/class_filter.inc:353
 msgid "Apply filter"
 msgstr ""
 
-#: include/functions.inc:2095
+#: include/functions.inc:2098
 #, php-format
 msgid "%sB"
 msgstr ""
 
-#: include/functions.inc:2096
+#: include/functions.inc:2099
 #, php-format
 msgid "%sKiB"
 msgstr ""
 
-#: include/functions.inc:2097
+#: include/functions.inc:2100
 #, php-format
 msgid "%sMiB"
 msgstr ""
 
-#: include/functions.inc:2098
+#: include/functions.inc:2101
 #, php-format
 msgid "%sGiB"
 msgstr ""
 
-#: include/functions.inc:2099
+#: include/functions.inc:2102
 #, php-format
 msgid "%sTiB"
 msgstr ""
 
-#: include/functions.inc:2100
+#: include/functions.inc:2103
 #, php-format
 msgid "%sPiB"
 msgstr ""
 
-#: include/functions.inc:2101
+#: include/functions.inc:2104
 #, php-format
 msgid "%sEiB"
 msgstr ""
 
-#: include/functions.inc:2102
+#: include/functions.inc:2105
 #, php-format
 msgid "%sZiB"
 msgstr ""
 
-#: include/functions.inc:2103
+#: include/functions.inc:2106
 #, php-format
 msgid "%sYiB"
 msgstr ""
 
-#: include/functions.inc:2135 include/class_filter.inc:315
+#: include/functions.inc:2138 include/class_filter.inc:315
 msgid "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
 msgstr ""
 
-#: include/functions.inc:2272
+#: include/functions.inc:2275
 #, php-format
 msgid ""
 "File '%s' could not be deleted. Try fusiondirectory-setup --check-"
 "directories to fix permissions."
 msgstr ""
 
-#: include/functions.inc:2314
+#: include/functions.inc:2317
 msgid "Cannot write to revision file!"
 msgstr ""
 
-#: include/functions.inc:2343
+#: include/functions.inc:2346
 msgid "Cannot read to revision file!"
 msgstr ""
 
-#: include/functions.inc:2545
+#: include/functions.inc:2548
 msgid "'nextIdHook' is not available. Using default base!"
 msgstr ""
 
-#: include/functions.inc:2563
+#: include/functions.inc:2566
 msgid "LDAP warning"
 msgstr ""
 
-#: include/functions.inc:2563
+#: include/functions.inc:2566
 msgid "Cannot get schema information from server. No schema check possible!"
 msgstr ""
 
-#: include/functions.inc:2581
+#: include/functions.inc:2584
 msgid ""
 "Used to lock currently edited entries to avoid multiple changes at the same "
 "time."
 msgstr ""
 
-#: include/functions.inc:2593
+#: include/functions.inc:2596
 #, php-format
 msgid "Missing required object class '%s'!"
 msgstr ""
 
-#: include/functions.inc:2596
+#: include/functions.inc:2599
 #, php-format
 msgid "Missing optional object class '%s'!"
 msgstr ""
 
-#: include/functions.inc:2600
+#: include/functions.inc:2603
 #, php-format
 msgid "Class(es) available"
 msgstr ""
 
-#: include/functions.inc:2620
+#: include/functions.inc:2623
 msgid ""
 "You have installed the mixed groups plugin, but your schema configuration "
 "does not support this."
 msgstr ""
 
-#: include/functions.inc:2621
+#: include/functions.inc:2624
 msgid ""
 "In order to use mixed groups the objectClass \"posixGroup\" must be "
 "AUXILIARY"
 msgstr ""
 
-#: include/functions.inc:2624
+#: include/functions.inc:2627
 msgid ""
 "Your schema is configured to support mixed groups, but this plugin is not "
 "present."
 msgstr ""
 
-#: include/functions.inc:2625
+#: include/functions.inc:2628
 msgid "The objectClass \"posixGroup\" must be STRUCTURAL"
 msgstr ""
 
-#: include/functions.inc:3075 include/functions.inc:3096
-#: include/functions.inc:3134 include/functions.inc:3146
-#: include/functions.inc:3150 include/functions.inc:3157
-#: include/functions.inc:3166
+#: include/functions.inc:3106 include/functions.inc:3127
+#: include/functions.inc:3165 include/functions.inc:3177
+#: include/functions.inc:3181 include/functions.inc:3188
+#: include/functions.inc:3197
 msgid "Cannot allocate a free ID:"
 msgstr ""
 
-#: include/functions.inc:3075
+#: include/functions.inc:3106
 msgid "unknown idAllocation method!"
 msgstr ""
 
-#: include/functions.inc:3096
+#: include/functions.inc:3127
 #, php-format
 msgid "%sPoolMin >= %sPoolMax!"
 msgstr ""
 
-#: include/functions.inc:3126
+#: include/functions.inc:3157
 msgid "Cannot create sambaUnixIdPool entry!"
 msgstr ""
 
-#: include/functions.inc:3134
+#: include/functions.inc:3165
 msgid "sambaUnixIdPool is not unique!"
 msgstr ""
 
-#: include/functions.inc:3146 include/functions.inc:3150
+#: include/functions.inc:3177 include/functions.inc:3181
 msgid "no ID available!"
 msgstr ""
 
-#: include/functions.inc:3166
+#: include/functions.inc:3197
 msgid "maximum tries exceeded!"
 msgstr ""
 
-#: include/functions.inc:3228
+#: include/functions.inc:3259
 msgid "Cannot allocate a free ID!"
 msgstr ""
 
-#: include/functions.inc:3264
+#: include/functions.inc:3295
 #, php-format
 msgid "Cannot locate file '%s' - please run '%s' to fix this"
 msgstr ""
@@ -3597,6 +3598,11 @@ msgstr ""
 msgid "Delete process has been canceled by plugin '%s': %s"
 msgstr ""
 
+#: include/simpleplugin/class_simpleTabs.inc:405
+#, php-format
+msgid "Move from \"%s\" to \"%s\" failed"
+msgstr ""
+
 #: include/class_timezone.inc:52
 #, php-format
 msgid "The timezone setting \"%s\" in your configuration is not valid."
@@ -3659,63 +3665,63 @@ msgid ""
 "fusiondirectory-setup --check-config to fix this."
 msgstr ""
 
-#: html/index.php:175
+#: html/index.php:171
 msgid "Smarty error"
 msgstr ""
 
-#: html/index.php:177
+#: html/index.php:173
 #, php-format
 msgid "Directory \"%s\" specified as compile directory is not accessible!"
 msgstr ""
 
-#: html/index.php:212
+#: html/index.php:208
 msgid "Your FusionDirectory session has expired!"
 msgstr ""
 
-#: html/index.php:215
+#: html/index.php:211
 msgid "Your IP has changed!"
 msgstr ""
 
-#: html/index.php:218
+#: html/index.php:214
 #, php-format
 msgid "Invalid plugin parameter \"%s\"!"
 msgstr ""
 
-#: html/index.php:221
+#: html/index.php:217
 msgid "No session found!"
 msgstr ""
 
-#: html/index.php:256
+#: html/index.php:252
 msgid "LDAP schema check reported errors:"
 msgstr ""
 
-#: html/index.php:282
+#: html/index.php:278
 msgid "Please specify a valid username!"
 msgstr ""
 
-#: html/index.php:285
+#: html/index.php:281
 msgid "Please specify your password!"
 msgstr ""
 
-#: html/index.php:304
+#: html/index.php:300
 msgid "Please check the username/password combination."
 msgstr ""
 
-#: html/index.php:337
+#: html/index.php:333
 msgid "Account locked. Please contact your system administrator!"
 msgstr ""
 
-#: html/index.php:440
+#: html/index.php:436
 #, php-format
 msgid "CAS user \"%s\" could not be found in the LDAP"
 msgstr ""
 
-#: html/index.php:450
+#: html/index.php:446
 #, php-format
 msgid "CAS user \"%s\" match several users in the LDAP"
 msgstr ""
 
-#: html/index.php:485
+#: html/index.php:481
 msgid ""
 "Your browser has cookies disabled. Please enable cookies and reload this "
 "page before logging in!"
diff --git a/locale/nb/fusiondirectory.po b/locale/nb/fusiondirectory.po
index e7be243bd03e00fc411d07e2d660ef280b7f938e..ab7f2f832a434fde173a943e9053bd465b5cc9f9 100644
--- a/locale/nb/fusiondirectory.po
+++ b/locale/nb/fusiondirectory.po
@@ -7,8 +7,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory-109\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2016-01-04 11:54+0100\n"
-"PO-Revision-Date: 2016-01-04 10:52+0000\n"
+"POT-Creation-Date: 2016-01-22 11:26+0100\n"
+"PO-Revision-Date: 2016-01-22 10:24+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n"
 "Language-Team: Norwegian Bokmål (http://www.transifex.com/fusiondirectory/FusionDirectory-109/language/nb/)\n"
 "MIME-Version: 1.0\n"
@@ -95,7 +95,7 @@ msgstr ""
 
 #: plugins/admin/groups/class_roleGeneric.inc:78
 #: plugins/admin/users/class_userManagement.inc:42
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:29
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:27
 #: setup/class_setupStep_Migrate.inc:871
 msgid "Users"
 msgstr ""
@@ -204,10 +204,10 @@ msgid "Only allow this group to connect to this list of hosts"
 msgstr ""
 
 #: plugins/admin/groups/class_group.inc:181
-#: plugins/personal/posix/class_posixAccount.inc:458 include/functions.inc:791
-#: include/functions.inc:2545 include/class_xml.inc:55
+#: plugins/personal/posix/class_posixAccount.inc:458 include/functions.inc:794
+#: include/functions.inc:2548 include/class_xml.inc:55
 #: include/simpleplugin/class_simpleTabs.inc:325 html/index.php:56
-#: html/index.php:62 html/index.php:485 html/class_passwordRecovery.inc:378
+#: html/index.php:62 html/index.php:481 html/class_passwordRecovery.inc:378
 #: setup/class_setupStep_Migrate.inc:572
 #: setup/class_setupStep_Migrate.inc:1083
 #: setup/class_setupStep_Migrate.inc:1202
@@ -250,7 +250,7 @@ msgstr ""
 msgid "Objects member of this group"
 msgstr ""
 
-#: plugins/admin/groups/class_ogroup.inc:317
+#: plugins/admin/groups/class_ogroup.inc:318
 msgid ""
 "Putting both workstations and terminals in the same group is not allowed"
 msgstr ""
@@ -873,19 +873,19 @@ msgstr ""
 msgid "Statistics"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:30
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:28
 msgid "Statistics about users"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:41
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:39
 msgid "Users statistics"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:46
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:44
 msgid "Groups statistics"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:51
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:49
 #: plugins/addons/dashboard/users_accounts.tpl.c:8
 msgid "Expired accounts"
 msgstr ""
@@ -2106,11 +2106,11 @@ msgstr ""
 #: include/class_config.inc:479 include/class_msgPool.inc:215
 #: include/class_msgPool.inc:235 include/class_msgPool.inc:265
 #: include/class_msgPool.inc:682 include/class_msgPool.inc:713
-#: include/class_msgPool.inc:740 include/functions.inc:3075
-#: include/functions.inc:3096 include/functions.inc:3126
-#: include/functions.inc:3134 include/functions.inc:3146
-#: include/functions.inc:3150 include/functions.inc:3157
-#: include/functions.inc:3166 include/functions.inc:3228
+#: include/class_msgPool.inc:740 include/functions.inc:3106
+#: include/functions.inc:3127 include/functions.inc:3157
+#: include/functions.inc:3165 include/functions.inc:3177
+#: include/functions.inc:3181 include/functions.inc:3188
+#: include/functions.inc:3197 include/functions.inc:3259
 #: include/class_msg_dialog.inc:128 include/class_xml.inc:58
 #: include/class_plugin.inc:1663 include/class_CopyPasteHandler.inc:278
 #: include/simpleplugin/class_dialogAttributes.inc:733
@@ -2121,11 +2121,12 @@ msgstr ""
 #: include/simpleplugin/class_attribute.inc:1877
 #: include/simpleplugin/class_attribute.inc:1879
 #: include/simpleplugin/class_simpleTabs.inc:90
+#: include/simpleplugin/class_simpleTabs.inc:405
 #: include/password-methods/class_password-methods-sasl.inc:60
 #: include/password-methods/class_password-methods-sasl.inc:86
-#: include/password-methods/class_password-methods.inc:434
-#: include/password-methods/class_password-methods.inc:444
-#: include/class_SnapshotHandler.inc:415 html/index.php:438 html/index.php:448
+#: include/password-methods/class_password-methods.inc:437
+#: include/password-methods/class_password-methods.inc:447
+#: include/class_SnapshotHandler.inc:415 html/index.php:434 html/index.php:444
 #: setup/class_setupStep_Migrate.inc:935
 #: ihtml/themes/default/msg_dialog.tpl.c:2 setup/setup_checks.tpl.c:5
 msgid "Error"
@@ -2244,8 +2245,8 @@ msgid "XML error in fusiondirectory.conf: %s at line %d"
 msgstr ""
 
 #: include/class_config.inc:162 include/class_config.inc:300
-#: include/class_config.inc:1001 include/class_config.inc:1014
-#: include/functions.inc:660 include/class_timezone.inc:51
+#: include/class_config.inc:985 include/class_config.inc:998
+#: include/functions.inc:663 include/class_timezone.inc:51
 #: include/password-methods/class_password-methods-sha.inc:71
 #: include/password-methods/class_password-methods-ssha.inc:75
 #: include/password-methods/class_password-methods-ssha.inc:91
@@ -2262,16 +2263,16 @@ msgid ""
 msgstr ""
 
 #: include/class_config.inc:337 include/class_ldap.inc:917
-#: include/class_ldap.inc:1371 include/functions.inc:523
-#: include/functions.inc:675 include/functions.inc:722
-#: include/functions.inc:783 include/functions.inc:838
-#: include/functions.inc:2965 include/simpleplugin/class_simplePlugin.inc:545
+#: include/class_ldap.inc:1371 include/functions.inc:526
+#: include/functions.inc:678 include/functions.inc:725
+#: include/functions.inc:786 include/functions.inc:841
+#: include/functions.inc:2985 include/simpleplugin/class_simplePlugin.inc:545
 #: include/simpleplugin/class_attribute.inc:2895
-#: include/password-methods/class_password-methods.inc:196
+#: include/password-methods/class_password-methods.inc:199
 #: include/class_SnapshotHandler.inc:50 include/class_SnapshotHandler.inc:244
 #: include/class_SnapshotHandler.inc:277 include/class_SnapshotHandler.inc:292
 #: include/class_SnapshotHandler.inc:422 include/class_SnapshotHandler.inc:425
-#: html/index.php:364 html/class_passwordRecovery.inc:497
+#: html/index.php:360 html/class_passwordRecovery.inc:497
 #: setup/class_setupStep_Migrate.inc:451
 #: setup/class_setupStep_Migrate.inc:1130
 msgid "LDAP error"
@@ -2286,25 +2287,25 @@ msgstr ""
 msgid "The selected mail method (class %s) is not available"
 msgstr ""
 
-#: include/class_config.inc:1002
+#: include/class_config.inc:986
 #, php-format
 msgid ""
 "The snapshot functionality is enabled, but the required variable '%s' is not"
 " set."
 msgstr ""
 
-#: include/class_config.inc:1015
+#: include/class_config.inc:999
 #, php-format
 msgid ""
 "The snapshot functionality is enabled, but the required compression module "
 "is missing. Please install '%s'."
 msgstr ""
 
-#: include/class_config.inc:1120
+#: include/class_config.inc:1104
 msgid "All categories"
 msgstr ""
 
-#: include/class_config.inc:1247
+#: include/class_config.inc:1231
 msgid "My account"
 msgstr ""
 
@@ -2318,10 +2319,10 @@ msgid "LDAP performance is poor: last query took about %.2fs!"
 msgstr ""
 
 #: include/class_ldap.inc:868 include/class_ldap.inc:904
-#: include/functions.inc:565 include/functions.inc:650
-#: include/functions.inc:770 include/functions.inc:1189
-#: include/functions.inc:2272 include/functions.inc:2314
-#: include/functions.inc:2343 include/class_session.inc:50
+#: include/functions.inc:568 include/functions.inc:653
+#: include/functions.inc:773 include/functions.inc:1192
+#: include/functions.inc:2275 include/functions.inc:2317
+#: include/functions.inc:2346 include/class_session.inc:50
 #: include/class_session.inc:87 include/class_session.inc:125
 #: include/class_log.inc:96 include/class_acl.inc:118
 msgid "Internal error"
@@ -2947,7 +2948,7 @@ msgid ""
 "Fatal error: cannot instantiate class '%s' - try running '%s' to fix this"
 msgstr ""
 
-#: include/functions.inc:493 include/functions.inc:3263
+#: include/functions.inc:496 include/functions.inc:3294
 #: include/class_xml.inc:61 include/simpleplugin/class_simplePlugin.inc:263
 #: include/simpleplugin/class_simplePlugin.inc:268
 #: include/simpleplugin/class_simplePlugin.inc:280
@@ -2955,246 +2956,246 @@ msgstr ""
 msgid "Fatal error"
 msgstr ""
 
-#: include/functions.inc:494
+#: include/functions.inc:497
 #, php-format
 msgid "FATAL: Error when connecting the LDAP. Server said '%s'."
 msgstr ""
 
-#: include/functions.inc:565
+#: include/functions.inc:568
 msgid ""
 "Login (uid) is not unique inside the LDAP tree. Please contact your "
 "administrator."
 msgstr ""
 
-#: include/functions.inc:598
+#: include/functions.inc:601
 msgid "Authentication error"
 msgstr ""
 
-#: include/functions.inc:599
+#: include/functions.inc:602
 msgid ""
 "It seems your user password has expired. Please use <a "
 "href=\"recovery.php\">password recovery</a> to change it."
 msgstr ""
 
-#: include/functions.inc:650 include/functions.inc:770
+#: include/functions.inc:653 include/functions.inc:773
 msgid "Error while adding a lock. Contact the developers!"
 msgstr ""
 
-#: include/functions.inc:660
+#: include/functions.inc:663
 #, php-format
 msgid ""
 "Cannot create locking information in LDAP tree. Please contact your "
 "administrator!"
 msgstr ""
 
-#: include/functions.inc:660
+#: include/functions.inc:663
 #, php-format
 msgid "LDAP server returned: %s"
 msgstr ""
 
-#: include/functions.inc:791
+#: include/functions.inc:794
 msgid ""
 "Found multiple locks for object to be locked. This should not happen - "
 "cleaning up multiple references."
 msgstr ""
 
-#: include/functions.inc:1109
+#: include/functions.inc:1112
 #, php-format
 msgid "The size limit of %d entries is exceed!"
 msgstr ""
 
-#: include/functions.inc:1111
+#: include/functions.inc:1114
 #, php-format
 msgid ""
 "Set the new size limit to %s and show me this message if the limit still "
 "exceeds"
 msgstr ""
 
-#: include/functions.inc:1128
+#: include/functions.inc:1131
 msgid "Configure"
 msgstr ""
 
-#: include/functions.inc:1133
+#: include/functions.inc:1136
 msgid "incomplete"
 msgstr ""
 
-#: include/functions.inc:1538
+#: include/functions.inc:1541
 msgid "Continue anyway"
 msgstr ""
 
-#: include/functions.inc:1540
+#: include/functions.inc:1543
 msgid "Edit anyway"
 msgstr ""
 
-#: include/functions.inc:1542
+#: include/functions.inc:1545
 #, php-format
 msgid "You're going to edit the LDAP entry/entries %s"
 msgstr ""
 
-#: include/functions.inc:1796
+#: include/functions.inc:1799
 msgid "Entries per page"
 msgstr ""
 
-#: include/functions.inc:1827 include/class_filter.inc:353
+#: include/functions.inc:1830 include/class_filter.inc:353
 msgid "Apply filter"
 msgstr ""
 
-#: include/functions.inc:2095
+#: include/functions.inc:2098
 #, php-format
 msgid "%sB"
 msgstr ""
 
-#: include/functions.inc:2096
+#: include/functions.inc:2099
 #, php-format
 msgid "%sKiB"
 msgstr ""
 
-#: include/functions.inc:2097
+#: include/functions.inc:2100
 #, php-format
 msgid "%sMiB"
 msgstr ""
 
-#: include/functions.inc:2098
+#: include/functions.inc:2101
 #, php-format
 msgid "%sGiB"
 msgstr ""
 
-#: include/functions.inc:2099
+#: include/functions.inc:2102
 #, php-format
 msgid "%sTiB"
 msgstr ""
 
-#: include/functions.inc:2100
+#: include/functions.inc:2103
 #, php-format
 msgid "%sPiB"
 msgstr ""
 
-#: include/functions.inc:2101
+#: include/functions.inc:2104
 #, php-format
 msgid "%sEiB"
 msgstr ""
 
-#: include/functions.inc:2102
+#: include/functions.inc:2105
 #, php-format
 msgid "%sZiB"
 msgstr ""
 
-#: include/functions.inc:2103
+#: include/functions.inc:2106
 #, php-format
 msgid "%sYiB"
 msgstr ""
 
-#: include/functions.inc:2135 include/class_filter.inc:315
+#: include/functions.inc:2138 include/class_filter.inc:315
 msgid "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
 msgstr ""
 
-#: include/functions.inc:2272
+#: include/functions.inc:2275
 #, php-format
 msgid ""
 "File '%s' could not be deleted. Try fusiondirectory-setup --check-"
 "directories to fix permissions."
 msgstr ""
 
-#: include/functions.inc:2314
+#: include/functions.inc:2317
 msgid "Cannot write to revision file!"
 msgstr ""
 
-#: include/functions.inc:2343
+#: include/functions.inc:2346
 msgid "Cannot read to revision file!"
 msgstr ""
 
-#: include/functions.inc:2545
+#: include/functions.inc:2548
 msgid "'nextIdHook' is not available. Using default base!"
 msgstr ""
 
-#: include/functions.inc:2563
+#: include/functions.inc:2566
 msgid "LDAP warning"
 msgstr ""
 
-#: include/functions.inc:2563
+#: include/functions.inc:2566
 msgid "Cannot get schema information from server. No schema check possible!"
 msgstr ""
 
-#: include/functions.inc:2581
+#: include/functions.inc:2584
 msgid ""
 "Used to lock currently edited entries to avoid multiple changes at the same "
 "time."
 msgstr ""
 
-#: include/functions.inc:2593
+#: include/functions.inc:2596
 #, php-format
 msgid "Missing required object class '%s'!"
 msgstr ""
 
-#: include/functions.inc:2596
+#: include/functions.inc:2599
 #, php-format
 msgid "Missing optional object class '%s'!"
 msgstr ""
 
-#: include/functions.inc:2600
+#: include/functions.inc:2603
 #, php-format
 msgid "Class(es) available"
 msgstr ""
 
-#: include/functions.inc:2620
+#: include/functions.inc:2623
 msgid ""
 "You have installed the mixed groups plugin, but your schema configuration "
 "does not support this."
 msgstr ""
 
-#: include/functions.inc:2621
+#: include/functions.inc:2624
 msgid ""
 "In order to use mixed groups the objectClass \"posixGroup\" must be "
 "AUXILIARY"
 msgstr ""
 
-#: include/functions.inc:2624
+#: include/functions.inc:2627
 msgid ""
 "Your schema is configured to support mixed groups, but this plugin is not "
 "present."
 msgstr ""
 
-#: include/functions.inc:2625
+#: include/functions.inc:2628
 msgid "The objectClass \"posixGroup\" must be STRUCTURAL"
 msgstr ""
 
-#: include/functions.inc:3075 include/functions.inc:3096
-#: include/functions.inc:3134 include/functions.inc:3146
-#: include/functions.inc:3150 include/functions.inc:3157
-#: include/functions.inc:3166
+#: include/functions.inc:3106 include/functions.inc:3127
+#: include/functions.inc:3165 include/functions.inc:3177
+#: include/functions.inc:3181 include/functions.inc:3188
+#: include/functions.inc:3197
 msgid "Cannot allocate a free ID:"
 msgstr ""
 
-#: include/functions.inc:3075
+#: include/functions.inc:3106
 msgid "unknown idAllocation method!"
 msgstr ""
 
-#: include/functions.inc:3096
+#: include/functions.inc:3127
 #, php-format
 msgid "%sPoolMin >= %sPoolMax!"
 msgstr ""
 
-#: include/functions.inc:3126
+#: include/functions.inc:3157
 msgid "Cannot create sambaUnixIdPool entry!"
 msgstr ""
 
-#: include/functions.inc:3134
+#: include/functions.inc:3165
 msgid "sambaUnixIdPool is not unique!"
 msgstr ""
 
-#: include/functions.inc:3146 include/functions.inc:3150
+#: include/functions.inc:3177 include/functions.inc:3181
 msgid "no ID available!"
 msgstr ""
 
-#: include/functions.inc:3166
+#: include/functions.inc:3197
 msgid "maximum tries exceeded!"
 msgstr ""
 
-#: include/functions.inc:3228
+#: include/functions.inc:3259
 msgid "Cannot allocate a free ID!"
 msgstr ""
 
-#: include/functions.inc:3264
+#: include/functions.inc:3295
 #, php-format
 msgid "Cannot locate file '%s' - please run '%s' to fix this"
 msgstr ""
@@ -3597,6 +3598,11 @@ msgstr ""
 msgid "Delete process has been canceled by plugin '%s': %s"
 msgstr ""
 
+#: include/simpleplugin/class_simpleTabs.inc:405
+#, php-format
+msgid "Move from \"%s\" to \"%s\" failed"
+msgstr ""
+
 #: include/class_timezone.inc:52
 #, php-format
 msgid "The timezone setting \"%s\" in your configuration is not valid."
@@ -3659,63 +3665,63 @@ msgid ""
 "fusiondirectory-setup --check-config to fix this."
 msgstr ""
 
-#: html/index.php:175
+#: html/index.php:171
 msgid "Smarty error"
 msgstr ""
 
-#: html/index.php:177
+#: html/index.php:173
 #, php-format
 msgid "Directory \"%s\" specified as compile directory is not accessible!"
 msgstr ""
 
-#: html/index.php:212
+#: html/index.php:208
 msgid "Your FusionDirectory session has expired!"
 msgstr ""
 
-#: html/index.php:215
+#: html/index.php:211
 msgid "Your IP has changed!"
 msgstr ""
 
-#: html/index.php:218
+#: html/index.php:214
 #, php-format
 msgid "Invalid plugin parameter \"%s\"!"
 msgstr ""
 
-#: html/index.php:221
+#: html/index.php:217
 msgid "No session found!"
 msgstr ""
 
-#: html/index.php:256
+#: html/index.php:252
 msgid "LDAP schema check reported errors:"
 msgstr ""
 
-#: html/index.php:282
+#: html/index.php:278
 msgid "Please specify a valid username!"
 msgstr ""
 
-#: html/index.php:285
+#: html/index.php:281
 msgid "Please specify your password!"
 msgstr ""
 
-#: html/index.php:304
+#: html/index.php:300
 msgid "Please check the username/password combination."
 msgstr ""
 
-#: html/index.php:337
+#: html/index.php:333
 msgid "Account locked. Please contact your system administrator!"
 msgstr ""
 
-#: html/index.php:440
+#: html/index.php:436
 #, php-format
 msgid "CAS user \"%s\" could not be found in the LDAP"
 msgstr ""
 
-#: html/index.php:450
+#: html/index.php:446
 #, php-format
 msgid "CAS user \"%s\" match several users in the LDAP"
 msgstr ""
 
-#: html/index.php:485
+#: html/index.php:481
 msgid ""
 "Your browser has cookies disabled. Please enable cookies and reload this "
 "page before logging in!"
diff --git a/locale/nl/fusiondirectory.po b/locale/nl/fusiondirectory.po
index f8f1cc38f2220d44bf9ec63699d80e96c62ed38e..431e5c4a0a4e84e20b79204c45ae65a339cb7bcd 100644
--- a/locale/nl/fusiondirectory.po
+++ b/locale/nl/fusiondirectory.po
@@ -7,8 +7,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory-109\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2016-01-04 11:54+0100\n"
-"PO-Revision-Date: 2016-01-04 10:52+0000\n"
+"POT-Creation-Date: 2016-01-22 11:26+0100\n"
+"PO-Revision-Date: 2016-01-22 10:24+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n"
 "Language-Team: Dutch (http://www.transifex.com/fusiondirectory/FusionDirectory-109/language/nl/)\n"
 "MIME-Version: 1.0\n"
@@ -95,7 +95,7 @@ msgstr "Fax nummer"
 
 #: plugins/admin/groups/class_roleGeneric.inc:78
 #: plugins/admin/users/class_userManagement.inc:42
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:29
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:27
 #: setup/class_setupStep_Migrate.inc:871
 msgid "Users"
 msgstr "Gebruikers"
@@ -204,10 +204,10 @@ msgid "Only allow this group to connect to this list of hosts"
 msgstr ""
 
 #: plugins/admin/groups/class_group.inc:181
-#: plugins/personal/posix/class_posixAccount.inc:458 include/functions.inc:791
-#: include/functions.inc:2545 include/class_xml.inc:55
+#: plugins/personal/posix/class_posixAccount.inc:458 include/functions.inc:794
+#: include/functions.inc:2548 include/class_xml.inc:55
 #: include/simpleplugin/class_simpleTabs.inc:325 html/index.php:56
-#: html/index.php:62 html/index.php:485 html/class_passwordRecovery.inc:378
+#: html/index.php:62 html/index.php:481 html/class_passwordRecovery.inc:378
 #: setup/class_setupStep_Migrate.inc:572
 #: setup/class_setupStep_Migrate.inc:1083
 #: setup/class_setupStep_Migrate.inc:1202
@@ -250,7 +250,7 @@ msgstr "Lidmaatschap objecten"
 msgid "Objects member of this group"
 msgstr ""
 
-#: plugins/admin/groups/class_ogroup.inc:317
+#: plugins/admin/groups/class_ogroup.inc:318
 msgid ""
 "Putting both workstations and terminals in the same group is not allowed"
 msgstr ""
@@ -873,19 +873,19 @@ msgstr ""
 msgid "Statistics"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:30
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:28
 msgid "Statistics about users"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:41
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:39
 msgid "Users statistics"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:46
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:44
 msgid "Groups statistics"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:51
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:49
 #: plugins/addons/dashboard/users_accounts.tpl.c:8
 msgid "Expired accounts"
 msgstr ""
@@ -2106,11 +2106,11 @@ msgstr "Selecteer alles"
 #: include/class_config.inc:479 include/class_msgPool.inc:215
 #: include/class_msgPool.inc:235 include/class_msgPool.inc:265
 #: include/class_msgPool.inc:682 include/class_msgPool.inc:713
-#: include/class_msgPool.inc:740 include/functions.inc:3075
-#: include/functions.inc:3096 include/functions.inc:3126
-#: include/functions.inc:3134 include/functions.inc:3146
-#: include/functions.inc:3150 include/functions.inc:3157
-#: include/functions.inc:3166 include/functions.inc:3228
+#: include/class_msgPool.inc:740 include/functions.inc:3106
+#: include/functions.inc:3127 include/functions.inc:3157
+#: include/functions.inc:3165 include/functions.inc:3177
+#: include/functions.inc:3181 include/functions.inc:3188
+#: include/functions.inc:3197 include/functions.inc:3259
 #: include/class_msg_dialog.inc:128 include/class_xml.inc:58
 #: include/class_plugin.inc:1663 include/class_CopyPasteHandler.inc:278
 #: include/simpleplugin/class_dialogAttributes.inc:733
@@ -2121,11 +2121,12 @@ msgstr "Selecteer alles"
 #: include/simpleplugin/class_attribute.inc:1877
 #: include/simpleplugin/class_attribute.inc:1879
 #: include/simpleplugin/class_simpleTabs.inc:90
+#: include/simpleplugin/class_simpleTabs.inc:405
 #: include/password-methods/class_password-methods-sasl.inc:60
 #: include/password-methods/class_password-methods-sasl.inc:86
-#: include/password-methods/class_password-methods.inc:434
-#: include/password-methods/class_password-methods.inc:444
-#: include/class_SnapshotHandler.inc:415 html/index.php:438 html/index.php:448
+#: include/password-methods/class_password-methods.inc:437
+#: include/password-methods/class_password-methods.inc:447
+#: include/class_SnapshotHandler.inc:415 html/index.php:434 html/index.php:444
 #: setup/class_setupStep_Migrate.inc:935
 #: ihtml/themes/default/msg_dialog.tpl.c:2 setup/setup_checks.tpl.c:5
 msgid "Error"
@@ -2244,8 +2245,8 @@ msgid "XML error in fusiondirectory.conf: %s at line %d"
 msgstr "XML fout in fusiondirectory.conf: %s op regel %d"
 
 #: include/class_config.inc:162 include/class_config.inc:300
-#: include/class_config.inc:1001 include/class_config.inc:1014
-#: include/functions.inc:660 include/class_timezone.inc:51
+#: include/class_config.inc:985 include/class_config.inc:998
+#: include/functions.inc:663 include/class_timezone.inc:51
 #: include/password-methods/class_password-methods-sha.inc:71
 #: include/password-methods/class_password-methods-ssha.inc:75
 #: include/password-methods/class_password-methods-ssha.inc:91
@@ -2262,16 +2263,16 @@ msgid ""
 msgstr ""
 
 #: include/class_config.inc:337 include/class_ldap.inc:917
-#: include/class_ldap.inc:1371 include/functions.inc:523
-#: include/functions.inc:675 include/functions.inc:722
-#: include/functions.inc:783 include/functions.inc:838
-#: include/functions.inc:2965 include/simpleplugin/class_simplePlugin.inc:545
+#: include/class_ldap.inc:1371 include/functions.inc:526
+#: include/functions.inc:678 include/functions.inc:725
+#: include/functions.inc:786 include/functions.inc:841
+#: include/functions.inc:2985 include/simpleplugin/class_simplePlugin.inc:545
 #: include/simpleplugin/class_attribute.inc:2895
-#: include/password-methods/class_password-methods.inc:196
+#: include/password-methods/class_password-methods.inc:199
 #: include/class_SnapshotHandler.inc:50 include/class_SnapshotHandler.inc:244
 #: include/class_SnapshotHandler.inc:277 include/class_SnapshotHandler.inc:292
 #: include/class_SnapshotHandler.inc:422 include/class_SnapshotHandler.inc:425
-#: html/index.php:364 html/class_passwordRecovery.inc:497
+#: html/index.php:360 html/class_passwordRecovery.inc:497
 #: setup/class_setupStep_Migrate.inc:451
 #: setup/class_setupStep_Migrate.inc:1130
 msgid "LDAP error"
@@ -2286,25 +2287,25 @@ msgstr "Kan niet binden met de LDAP. Gelie je systeembeheerder te contacteren."
 msgid "The selected mail method (class %s) is not available"
 msgstr "De geselecteerde mail methode (class %s) is niet beschikbaar"
 
-#: include/class_config.inc:1002
+#: include/class_config.inc:986
 #, php-format
 msgid ""
 "The snapshot functionality is enabled, but the required variable '%s' is not"
 " set."
 msgstr "De snapshot functionaliteit is aan, maar de vereiste variabele '%s' is niet ingesteld."
 
-#: include/class_config.inc:1015
+#: include/class_config.inc:999
 #, php-format
 msgid ""
 "The snapshot functionality is enabled, but the required compression module "
 "is missing. Please install '%s'."
 msgstr "De snapshot funcionaliteit is geactiveerd, maar de vereiste compressie module ontbreekt. Installeer aub '%s'."
 
-#: include/class_config.inc:1120
+#: include/class_config.inc:1104
 msgid "All categories"
 msgstr "Alle categoriën"
 
-#: include/class_config.inc:1247
+#: include/class_config.inc:1231
 msgid "My account"
 msgstr "Mijn account"
 
@@ -2318,10 +2319,10 @@ msgid "LDAP performance is poor: last query took about %.2fs!"
 msgstr "LDAP performantie is slecht: laatste query duurde ongeveer %.2fs!"
 
 #: include/class_ldap.inc:868 include/class_ldap.inc:904
-#: include/functions.inc:565 include/functions.inc:650
-#: include/functions.inc:770 include/functions.inc:1189
-#: include/functions.inc:2272 include/functions.inc:2314
-#: include/functions.inc:2343 include/class_session.inc:50
+#: include/functions.inc:568 include/functions.inc:653
+#: include/functions.inc:773 include/functions.inc:1192
+#: include/functions.inc:2275 include/functions.inc:2317
+#: include/functions.inc:2346 include/class_session.inc:50
 #: include/class_session.inc:87 include/class_session.inc:125
 #: include/class_log.inc:96 include/class_acl.inc:118
 msgid "Internal error"
@@ -2947,7 +2948,7 @@ msgid ""
 "Fatal error: cannot instantiate class '%s' - try running '%s' to fix this"
 msgstr "Fatale error: kan class '%s' niet instantiëren - probeer '%s' te draaien om dit op te lossen"
 
-#: include/functions.inc:493 include/functions.inc:3263
+#: include/functions.inc:496 include/functions.inc:3294
 #: include/class_xml.inc:61 include/simpleplugin/class_simplePlugin.inc:263
 #: include/simpleplugin/class_simplePlugin.inc:268
 #: include/simpleplugin/class_simplePlugin.inc:280
@@ -2955,246 +2956,246 @@ msgstr "Fatale error: kan class '%s' niet instantiëren - probeer '%s' te draaie
 msgid "Fatal error"
 msgstr "Fatale fout."
 
-#: include/functions.inc:494
+#: include/functions.inc:497
 #, php-format
 msgid "FATAL: Error when connecting the LDAP. Server said '%s'."
 msgstr "FATAAL: Fout bij het verbinden met de LDAP server. De server meldt: '%s'."
 
-#: include/functions.inc:565
+#: include/functions.inc:568
 msgid ""
 "Login (uid) is not unique inside the LDAP tree. Please contact your "
 "administrator."
 msgstr ""
 
-#: include/functions.inc:598
+#: include/functions.inc:601
 msgid "Authentication error"
 msgstr "Authentificatie error"
 
-#: include/functions.inc:599
+#: include/functions.inc:602
 msgid ""
 "It seems your user password has expired. Please use <a "
 "href=\"recovery.php\">password recovery</a> to change it."
 msgstr ""
 
-#: include/functions.inc:650 include/functions.inc:770
+#: include/functions.inc:653 include/functions.inc:773
 msgid "Error while adding a lock. Contact the developers!"
 msgstr "Error tijdens het toevoegen van de lock. Contacteer de programmeurs!"
 
-#: include/functions.inc:660
+#: include/functions.inc:663
 #, php-format
 msgid ""
 "Cannot create locking information in LDAP tree. Please contact your "
 "administrator!"
 msgstr "Kan de locking informatie voor de LDAP tree niet aanmaken. Gelieve je systeembeheerder te contacteren!"
 
-#: include/functions.inc:660
+#: include/functions.inc:663
 #, php-format
 msgid "LDAP server returned: %s"
 msgstr "LDAP server returned: %s"
 
-#: include/functions.inc:791
+#: include/functions.inc:794
 msgid ""
 "Found multiple locks for object to be locked. This should not happen - "
 "cleaning up multiple references."
 msgstr "Verschillende locks zijn teruggevonden voor het object dat je wilt in lock plaatsen. Dit zou niet mogen gebeuren - Opschonen van meerdere referenties."
 
-#: include/functions.inc:1109
+#: include/functions.inc:1112
 #, php-format
 msgid "The size limit of %d entries is exceed!"
 msgstr "De hoeveelheidslimiet van %d invoeren is overschreden!"
 
-#: include/functions.inc:1111
+#: include/functions.inc:1114
 #, php-format
 msgid ""
 "Set the new size limit to %s and show me this message if the limit still "
 "exceeds"
 msgstr "Stel de nieuwe hoeveelheidslimiet in op %s en toon me dit bericht indien de limiet nog steeds overschreden wordt."
 
-#: include/functions.inc:1128
+#: include/functions.inc:1131
 msgid "Configure"
 msgstr "Instellen"
 
-#: include/functions.inc:1133
+#: include/functions.inc:1136
 msgid "incomplete"
 msgstr "onvolledig"
 
-#: include/functions.inc:1538
+#: include/functions.inc:1541
 msgid "Continue anyway"
 msgstr "Toch doorgaan"
 
-#: include/functions.inc:1540
+#: include/functions.inc:1543
 msgid "Edit anyway"
 msgstr "Alsnog bewerken"
 
-#: include/functions.inc:1542
+#: include/functions.inc:1545
 #, php-format
 msgid "You're going to edit the LDAP entry/entries %s"
 msgstr "Je staat op het punt de LDAP inzending/inzendingen te wijzigen %s"
 
-#: include/functions.inc:1796
+#: include/functions.inc:1799
 msgid "Entries per page"
 msgstr "Regels per pagina"
 
-#: include/functions.inc:1827 include/class_filter.inc:353
+#: include/functions.inc:1830 include/class_filter.inc:353
 msgid "Apply filter"
 msgstr "Filter toepassen"
 
-#: include/functions.inc:2095
+#: include/functions.inc:2098
 #, php-format
 msgid "%sB"
 msgstr ""
 
-#: include/functions.inc:2096
+#: include/functions.inc:2099
 #, php-format
 msgid "%sKiB"
 msgstr ""
 
-#: include/functions.inc:2097
+#: include/functions.inc:2100
 #, php-format
 msgid "%sMiB"
 msgstr ""
 
-#: include/functions.inc:2098
+#: include/functions.inc:2101
 #, php-format
 msgid "%sGiB"
 msgstr ""
 
-#: include/functions.inc:2099
+#: include/functions.inc:2102
 #, php-format
 msgid "%sTiB"
 msgstr ""
 
-#: include/functions.inc:2100
+#: include/functions.inc:2103
 #, php-format
 msgid "%sPiB"
 msgstr ""
 
-#: include/functions.inc:2101
+#: include/functions.inc:2104
 #, php-format
 msgid "%sEiB"
 msgstr ""
 
-#: include/functions.inc:2102
+#: include/functions.inc:2105
 #, php-format
 msgid "%sZiB"
 msgstr ""
 
-#: include/functions.inc:2103
+#: include/functions.inc:2106
 #, php-format
 msgid "%sYiB"
 msgstr ""
 
-#: include/functions.inc:2135 include/class_filter.inc:315
+#: include/functions.inc:2138 include/class_filter.inc:315
 msgid "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
 msgstr "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
 
-#: include/functions.inc:2272
+#: include/functions.inc:2275
 #, php-format
 msgid ""
 "File '%s' could not be deleted. Try fusiondirectory-setup --check-"
 "directories to fix permissions."
 msgstr "Bestand '%s' kon niet verwijderd worden. Probeer fusiondirectory-setup --check-directories om de rechten correct te plaatsen."
 
-#: include/functions.inc:2314
+#: include/functions.inc:2317
 msgid "Cannot write to revision file!"
 msgstr "Kan niet wegschrijven naar revisie bestand!"
 
-#: include/functions.inc:2343
+#: include/functions.inc:2346
 msgid "Cannot read to revision file!"
 msgstr "Kan revisie bestand niet lezen!"
 
-#: include/functions.inc:2545
+#: include/functions.inc:2548
 msgid "'nextIdHook' is not available. Using default base!"
 msgstr ""
 
-#: include/functions.inc:2563
+#: include/functions.inc:2566
 msgid "LDAP warning"
 msgstr "LDAP waarschuwing"
 
-#: include/functions.inc:2563
+#: include/functions.inc:2566
 msgid "Cannot get schema information from server. No schema check possible!"
 msgstr "Kan geen schema informatie krijgen van de server. Geen schema verificatie mogelijk!"
 
-#: include/functions.inc:2581
+#: include/functions.inc:2584
 msgid ""
 "Used to lock currently edited entries to avoid multiple changes at the same "
 "time."
 msgstr "Wordt gebruikt om huidige gewijzigde inzendingen te blokkeren en zo meerdere wijzingen terzelfde tijd tegen te gaan."
 
-#: include/functions.inc:2593
+#: include/functions.inc:2596
 #, php-format
 msgid "Missing required object class '%s'!"
 msgstr "Vereiste object class '%s' ontbreekt!"
 
-#: include/functions.inc:2596
+#: include/functions.inc:2599
 #, php-format
 msgid "Missing optional object class '%s'!"
 msgstr "Optionele object class '%s' ontbreekt!"
 
-#: include/functions.inc:2600
+#: include/functions.inc:2603
 #, php-format
 msgid "Class(es) available"
 msgstr "Class(es) beschikbaar"
 
-#: include/functions.inc:2620
+#: include/functions.inc:2623
 msgid ""
 "You have installed the mixed groups plugin, but your schema configuration "
 "does not support this."
 msgstr ""
 
-#: include/functions.inc:2621
+#: include/functions.inc:2624
 msgid ""
 "In order to use mixed groups the objectClass \"posixGroup\" must be "
 "AUXILIARY"
 msgstr ""
 
-#: include/functions.inc:2624
+#: include/functions.inc:2627
 msgid ""
 "Your schema is configured to support mixed groups, but this plugin is not "
 "present."
 msgstr ""
 
-#: include/functions.inc:2625
+#: include/functions.inc:2628
 msgid "The objectClass \"posixGroup\" must be STRUCTURAL"
 msgstr ""
 
-#: include/functions.inc:3075 include/functions.inc:3096
-#: include/functions.inc:3134 include/functions.inc:3146
-#: include/functions.inc:3150 include/functions.inc:3157
-#: include/functions.inc:3166
+#: include/functions.inc:3106 include/functions.inc:3127
+#: include/functions.inc:3165 include/functions.inc:3177
+#: include/functions.inc:3181 include/functions.inc:3188
+#: include/functions.inc:3197
 msgid "Cannot allocate a free ID:"
 msgstr "Kan geen vrij ID  toekennen:"
 
-#: include/functions.inc:3075
+#: include/functions.inc:3106
 msgid "unknown idAllocation method!"
 msgstr "onbekende idAllocation methode!"
 
-#: include/functions.inc:3096
+#: include/functions.inc:3127
 #, php-format
 msgid "%sPoolMin >= %sPoolMax!"
 msgstr "%sPoolMin >=%sPoolMax!"
 
-#: include/functions.inc:3126
+#: include/functions.inc:3157
 msgid "Cannot create sambaUnixIdPool entry!"
 msgstr "Kan inzending sambaUnixIdPool niet aanmaken!"
 
-#: include/functions.inc:3134
+#: include/functions.inc:3165
 msgid "sambaUnixIdPool is not unique!"
 msgstr "sambaUnixIdPool is niet uniek!"
 
-#: include/functions.inc:3146 include/functions.inc:3150
+#: include/functions.inc:3177 include/functions.inc:3181
 msgid "no ID available!"
 msgstr "Geen ID beschikbaar!"
 
-#: include/functions.inc:3166
+#: include/functions.inc:3197
 msgid "maximum tries exceeded!"
 msgstr "maximum pogingen overschreden!"
 
-#: include/functions.inc:3228
+#: include/functions.inc:3259
 msgid "Cannot allocate a free ID!"
 msgstr "Kan geen vrij ID toekennen!"
 
-#: include/functions.inc:3264
+#: include/functions.inc:3295
 #, php-format
 msgid "Cannot locate file '%s' - please run '%s' to fix this"
 msgstr "Kan bestand '%s' niet vinden - gebruik aub '%s' om dit op te lossen"
@@ -3597,6 +3598,11 @@ msgstr "Geen plugin definities gevonden om '%s' te initializeren, verifieer aub
 msgid "Delete process has been canceled by plugin '%s': %s"
 msgstr "Het verwijder proces is geannuleerd door plugin '%s': %s"
 
+#: include/simpleplugin/class_simpleTabs.inc:405
+#, php-format
+msgid "Move from \"%s\" to \"%s\" failed"
+msgstr ""
+
 #: include/class_timezone.inc:52
 #, php-format
 msgid "The timezone setting \"%s\" in your configuration is not valid."
@@ -3659,63 +3665,63 @@ msgid ""
 "fusiondirectory-setup --check-config to fix this."
 msgstr ""
 
-#: html/index.php:175
+#: html/index.php:171
 msgid "Smarty error"
 msgstr "Smarty error"
 
-#: html/index.php:177
+#: html/index.php:173
 #, php-format
 msgid "Directory \"%s\" specified as compile directory is not accessible!"
 msgstr ""
 
-#: html/index.php:212
+#: html/index.php:208
 msgid "Your FusionDirectory session has expired!"
 msgstr "Je FusionDirectory sessie is vervallen!"
 
-#: html/index.php:215
+#: html/index.php:211
 msgid "Your IP has changed!"
 msgstr ""
 
-#: html/index.php:218
+#: html/index.php:214
 #, php-format
 msgid "Invalid plugin parameter \"%s\"!"
 msgstr ""
 
-#: html/index.php:221
+#: html/index.php:217
 msgid "No session found!"
 msgstr ""
 
-#: html/index.php:256
+#: html/index.php:252
 msgid "LDAP schema check reported errors:"
 msgstr ""
 
-#: html/index.php:282
+#: html/index.php:278
 msgid "Please specify a valid username!"
 msgstr "Geef a.u.b. een geldige gebruikersnaam op!"
 
-#: html/index.php:285
+#: html/index.php:281
 msgid "Please specify your password!"
 msgstr "Geef a.u.b. uw wachtwoord op!"
 
-#: html/index.php:304
+#: html/index.php:300
 msgid "Please check the username/password combination."
 msgstr "Controleer a.u.b. de gebruikersnaam/wachtwoord combinatie."
 
-#: html/index.php:337
+#: html/index.php:333
 msgid "Account locked. Please contact your system administrator!"
 msgstr "Accound geblokkeerd. Contacteer aub je systeembeheerder!"
 
-#: html/index.php:440
+#: html/index.php:436
 #, php-format
 msgid "CAS user \"%s\" could not be found in the LDAP"
 msgstr ""
 
-#: html/index.php:450
+#: html/index.php:446
 #, php-format
 msgid "CAS user \"%s\" match several users in the LDAP"
 msgstr ""
 
-#: html/index.php:485
+#: html/index.php:481
 msgid ""
 "Your browser has cookies disabled. Please enable cookies and reload this "
 "page before logging in!"
diff --git a/locale/pl/fusiondirectory.po b/locale/pl/fusiondirectory.po
index 7827bd33b298e1abda647982876bbb29935b9c03..ca3bea355b9c376bc90c5df1be11c2f6af06406e 100644
--- a/locale/pl/fusiondirectory.po
+++ b/locale/pl/fusiondirectory.po
@@ -7,8 +7,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory-109\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2016-01-04 11:54+0100\n"
-"PO-Revision-Date: 2016-01-04 10:52+0000\n"
+"POT-Creation-Date: 2016-01-22 11:26+0100\n"
+"PO-Revision-Date: 2016-01-22 10:24+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n"
 "Language-Team: Polish (http://www.transifex.com/fusiondirectory/FusionDirectory-109/language/pl/)\n"
 "MIME-Version: 1.0\n"
@@ -95,7 +95,7 @@ msgstr "Numer fax"
 
 #: plugins/admin/groups/class_roleGeneric.inc:78
 #: plugins/admin/users/class_userManagement.inc:42
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:29
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:27
 #: setup/class_setupStep_Migrate.inc:871
 msgid "Users"
 msgstr "Użytkownicy"
@@ -204,10 +204,10 @@ msgid "Only allow this group to connect to this list of hosts"
 msgstr ""
 
 #: plugins/admin/groups/class_group.inc:181
-#: plugins/personal/posix/class_posixAccount.inc:458 include/functions.inc:791
-#: include/functions.inc:2545 include/class_xml.inc:55
+#: plugins/personal/posix/class_posixAccount.inc:458 include/functions.inc:794
+#: include/functions.inc:2548 include/class_xml.inc:55
 #: include/simpleplugin/class_simpleTabs.inc:325 html/index.php:56
-#: html/index.php:62 html/index.php:485 html/class_passwordRecovery.inc:378
+#: html/index.php:62 html/index.php:481 html/class_passwordRecovery.inc:378
 #: setup/class_setupStep_Migrate.inc:572
 #: setup/class_setupStep_Migrate.inc:1083
 #: setup/class_setupStep_Migrate.inc:1202
@@ -250,7 +250,7 @@ msgstr "Dodaj członka"
 msgid "Objects member of this group"
 msgstr ""
 
-#: plugins/admin/groups/class_ogroup.inc:317
+#: plugins/admin/groups/class_ogroup.inc:318
 msgid ""
 "Putting both workstations and terminals in the same group is not allowed"
 msgstr ""
@@ -873,19 +873,19 @@ msgstr ""
 msgid "Statistics"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:30
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:28
 msgid "Statistics about users"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:41
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:39
 msgid "Users statistics"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:46
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:44
 msgid "Groups statistics"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:51
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:49
 #: plugins/addons/dashboard/users_accounts.tpl.c:8
 msgid "Expired accounts"
 msgstr ""
@@ -2106,11 +2106,11 @@ msgstr "Wybierz wszystko"
 #: include/class_config.inc:479 include/class_msgPool.inc:215
 #: include/class_msgPool.inc:235 include/class_msgPool.inc:265
 #: include/class_msgPool.inc:682 include/class_msgPool.inc:713
-#: include/class_msgPool.inc:740 include/functions.inc:3075
-#: include/functions.inc:3096 include/functions.inc:3126
-#: include/functions.inc:3134 include/functions.inc:3146
-#: include/functions.inc:3150 include/functions.inc:3157
-#: include/functions.inc:3166 include/functions.inc:3228
+#: include/class_msgPool.inc:740 include/functions.inc:3106
+#: include/functions.inc:3127 include/functions.inc:3157
+#: include/functions.inc:3165 include/functions.inc:3177
+#: include/functions.inc:3181 include/functions.inc:3188
+#: include/functions.inc:3197 include/functions.inc:3259
 #: include/class_msg_dialog.inc:128 include/class_xml.inc:58
 #: include/class_plugin.inc:1663 include/class_CopyPasteHandler.inc:278
 #: include/simpleplugin/class_dialogAttributes.inc:733
@@ -2121,11 +2121,12 @@ msgstr "Wybierz wszystko"
 #: include/simpleplugin/class_attribute.inc:1877
 #: include/simpleplugin/class_attribute.inc:1879
 #: include/simpleplugin/class_simpleTabs.inc:90
+#: include/simpleplugin/class_simpleTabs.inc:405
 #: include/password-methods/class_password-methods-sasl.inc:60
 #: include/password-methods/class_password-methods-sasl.inc:86
-#: include/password-methods/class_password-methods.inc:434
-#: include/password-methods/class_password-methods.inc:444
-#: include/class_SnapshotHandler.inc:415 html/index.php:438 html/index.php:448
+#: include/password-methods/class_password-methods.inc:437
+#: include/password-methods/class_password-methods.inc:447
+#: include/class_SnapshotHandler.inc:415 html/index.php:434 html/index.php:444
 #: setup/class_setupStep_Migrate.inc:935
 #: ihtml/themes/default/msg_dialog.tpl.c:2 setup/setup_checks.tpl.c:5
 msgid "Error"
@@ -2244,8 +2245,8 @@ msgid "XML error in fusiondirectory.conf: %s at line %d"
 msgstr "Błąd XML w pliku fusiondirectory.conf: %s w linii %d"
 
 #: include/class_config.inc:162 include/class_config.inc:300
-#: include/class_config.inc:1001 include/class_config.inc:1014
-#: include/functions.inc:660 include/class_timezone.inc:51
+#: include/class_config.inc:985 include/class_config.inc:998
+#: include/functions.inc:663 include/class_timezone.inc:51
 #: include/password-methods/class_password-methods-sha.inc:71
 #: include/password-methods/class_password-methods-ssha.inc:75
 #: include/password-methods/class_password-methods-ssha.inc:91
@@ -2262,16 +2263,16 @@ msgid ""
 msgstr ""
 
 #: include/class_config.inc:337 include/class_ldap.inc:917
-#: include/class_ldap.inc:1371 include/functions.inc:523
-#: include/functions.inc:675 include/functions.inc:722
-#: include/functions.inc:783 include/functions.inc:838
-#: include/functions.inc:2965 include/simpleplugin/class_simplePlugin.inc:545
+#: include/class_ldap.inc:1371 include/functions.inc:526
+#: include/functions.inc:678 include/functions.inc:725
+#: include/functions.inc:786 include/functions.inc:841
+#: include/functions.inc:2985 include/simpleplugin/class_simplePlugin.inc:545
 #: include/simpleplugin/class_attribute.inc:2895
-#: include/password-methods/class_password-methods.inc:196
+#: include/password-methods/class_password-methods.inc:199
 #: include/class_SnapshotHandler.inc:50 include/class_SnapshotHandler.inc:244
 #: include/class_SnapshotHandler.inc:277 include/class_SnapshotHandler.inc:292
 #: include/class_SnapshotHandler.inc:422 include/class_SnapshotHandler.inc:425
-#: html/index.php:364 html/class_passwordRecovery.inc:497
+#: html/index.php:360 html/class_passwordRecovery.inc:497
 #: setup/class_setupStep_Migrate.inc:451
 #: setup/class_setupStep_Migrate.inc:1130
 msgid "LDAP error"
@@ -2286,25 +2287,25 @@ msgstr ""
 msgid "The selected mail method (class %s) is not available"
 msgstr ""
 
-#: include/class_config.inc:1002
+#: include/class_config.inc:986
 #, php-format
 msgid ""
 "The snapshot functionality is enabled, but the required variable '%s' is not"
 " set."
 msgstr ""
 
-#: include/class_config.inc:1015
+#: include/class_config.inc:999
 #, php-format
 msgid ""
 "The snapshot functionality is enabled, but the required compression module "
 "is missing. Please install '%s'."
 msgstr ""
 
-#: include/class_config.inc:1120
+#: include/class_config.inc:1104
 msgid "All categories"
 msgstr "Wszystkie kategorie"
 
-#: include/class_config.inc:1247
+#: include/class_config.inc:1231
 msgid "My account"
 msgstr "Moje konto "
 
@@ -2318,10 +2319,10 @@ msgid "LDAP performance is poor: last query took about %.2fs!"
 msgstr ""
 
 #: include/class_ldap.inc:868 include/class_ldap.inc:904
-#: include/functions.inc:565 include/functions.inc:650
-#: include/functions.inc:770 include/functions.inc:1189
-#: include/functions.inc:2272 include/functions.inc:2314
-#: include/functions.inc:2343 include/class_session.inc:50
+#: include/functions.inc:568 include/functions.inc:653
+#: include/functions.inc:773 include/functions.inc:1192
+#: include/functions.inc:2275 include/functions.inc:2317
+#: include/functions.inc:2346 include/class_session.inc:50
 #: include/class_session.inc:87 include/class_session.inc:125
 #: include/class_log.inc:96 include/class_acl.inc:118
 msgid "Internal error"
@@ -2947,7 +2948,7 @@ msgid ""
 "Fatal error: cannot instantiate class '%s' - try running '%s' to fix this"
 msgstr ""
 
-#: include/functions.inc:493 include/functions.inc:3263
+#: include/functions.inc:496 include/functions.inc:3294
 #: include/class_xml.inc:61 include/simpleplugin/class_simplePlugin.inc:263
 #: include/simpleplugin/class_simplePlugin.inc:268
 #: include/simpleplugin/class_simplePlugin.inc:280
@@ -2955,246 +2956,246 @@ msgstr ""
 msgid "Fatal error"
 msgstr "Błąd krytyczny"
 
-#: include/functions.inc:494
+#: include/functions.inc:497
 #, php-format
 msgid "FATAL: Error when connecting the LDAP. Server said '%s'."
 msgstr "BŁĄD: Nie można połączyć się z serwerem LDAP. Odpowiedź serwera '%s'."
 
-#: include/functions.inc:565
+#: include/functions.inc:568
 msgid ""
 "Login (uid) is not unique inside the LDAP tree. Please contact your "
 "administrator."
 msgstr ""
 
-#: include/functions.inc:598
+#: include/functions.inc:601
 msgid "Authentication error"
 msgstr "Błąd autentykacji"
 
-#: include/functions.inc:599
+#: include/functions.inc:602
 msgid ""
 "It seems your user password has expired. Please use <a "
 "href=\"recovery.php\">password recovery</a> to change it."
 msgstr ""
 
-#: include/functions.inc:650 include/functions.inc:770
+#: include/functions.inc:653 include/functions.inc:773
 msgid "Error while adding a lock. Contact the developers!"
 msgstr ""
 
-#: include/functions.inc:660
+#: include/functions.inc:663
 #, php-format
 msgid ""
 "Cannot create locking information in LDAP tree. Please contact your "
 "administrator!"
 msgstr ""
 
-#: include/functions.inc:660
+#: include/functions.inc:663
 #, php-format
 msgid "LDAP server returned: %s"
 msgstr ""
 
-#: include/functions.inc:791
+#: include/functions.inc:794
 msgid ""
 "Found multiple locks for object to be locked. This should not happen - "
 "cleaning up multiple references."
 msgstr ""
 
-#: include/functions.inc:1109
+#: include/functions.inc:1112
 #, php-format
 msgid "The size limit of %d entries is exceed!"
 msgstr "Limit wielkości %d elementów został przekroczony!"
 
-#: include/functions.inc:1111
+#: include/functions.inc:1114
 #, php-format
 msgid ""
 "Set the new size limit to %s and show me this message if the limit still "
 "exceeds"
 msgstr "Ustaw nowy limit rozmiaru na %s i pokaż ten komunikat jeśli limit wciąż jest przekroczony"
 
-#: include/functions.inc:1128
+#: include/functions.inc:1131
 msgid "Configure"
 msgstr "Konfiguruj"
 
-#: include/functions.inc:1133
+#: include/functions.inc:1136
 msgid "incomplete"
 msgstr "niepełne"
 
-#: include/functions.inc:1538
+#: include/functions.inc:1541
 msgid "Continue anyway"
 msgstr "Kontynuuj mimo wszystko"
 
-#: include/functions.inc:1540
+#: include/functions.inc:1543
 msgid "Edit anyway"
 msgstr "Edytuj mimo wszystko"
 
-#: include/functions.inc:1542
+#: include/functions.inc:1545
 #, php-format
 msgid "You're going to edit the LDAP entry/entries %s"
 msgstr ""
 
-#: include/functions.inc:1796
+#: include/functions.inc:1799
 msgid "Entries per page"
 msgstr "Wpisów na stronie"
 
-#: include/functions.inc:1827 include/class_filter.inc:353
+#: include/functions.inc:1830 include/class_filter.inc:353
 msgid "Apply filter"
 msgstr "Zastosuj filtr"
 
-#: include/functions.inc:2095
+#: include/functions.inc:2098
 #, php-format
 msgid "%sB"
 msgstr ""
 
-#: include/functions.inc:2096
+#: include/functions.inc:2099
 #, php-format
 msgid "%sKiB"
 msgstr ""
 
-#: include/functions.inc:2097
+#: include/functions.inc:2100
 #, php-format
 msgid "%sMiB"
 msgstr ""
 
-#: include/functions.inc:2098
+#: include/functions.inc:2101
 #, php-format
 msgid "%sGiB"
 msgstr ""
 
-#: include/functions.inc:2099
+#: include/functions.inc:2102
 #, php-format
 msgid "%sTiB"
 msgstr ""
 
-#: include/functions.inc:2100
+#: include/functions.inc:2103
 #, php-format
 msgid "%sPiB"
 msgstr ""
 
-#: include/functions.inc:2101
+#: include/functions.inc:2104
 #, php-format
 msgid "%sEiB"
 msgstr ""
 
-#: include/functions.inc:2102
+#: include/functions.inc:2105
 #, php-format
 msgid "%sZiB"
 msgstr ""
 
-#: include/functions.inc:2103
+#: include/functions.inc:2106
 #, php-format
 msgid "%sYiB"
 msgstr ""
 
-#: include/functions.inc:2135 include/class_filter.inc:315
+#: include/functions.inc:2138 include/class_filter.inc:315
 msgid "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
 msgstr "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
 
-#: include/functions.inc:2272
+#: include/functions.inc:2275
 #, php-format
 msgid ""
 "File '%s' could not be deleted. Try fusiondirectory-setup --check-"
 "directories to fix permissions."
 msgstr ""
 
-#: include/functions.inc:2314
+#: include/functions.inc:2317
 msgid "Cannot write to revision file!"
 msgstr ""
 
-#: include/functions.inc:2343
+#: include/functions.inc:2346
 msgid "Cannot read to revision file!"
 msgstr ""
 
-#: include/functions.inc:2545
+#: include/functions.inc:2548
 msgid "'nextIdHook' is not available. Using default base!"
 msgstr ""
 
-#: include/functions.inc:2563
+#: include/functions.inc:2566
 msgid "LDAP warning"
 msgstr "Ostrzeżenie LDAP"
 
-#: include/functions.inc:2563
+#: include/functions.inc:2566
 msgid "Cannot get schema information from server. No schema check possible!"
 msgstr ""
 
-#: include/functions.inc:2581
+#: include/functions.inc:2584
 msgid ""
 "Used to lock currently edited entries to avoid multiple changes at the same "
 "time."
 msgstr ""
 
-#: include/functions.inc:2593
+#: include/functions.inc:2596
 #, php-format
 msgid "Missing required object class '%s'!"
 msgstr ""
 
-#: include/functions.inc:2596
+#: include/functions.inc:2599
 #, php-format
 msgid "Missing optional object class '%s'!"
 msgstr "Brak opcjonalnego obiektu klasy '%s'!"
 
-#: include/functions.inc:2600
+#: include/functions.inc:2603
 #, php-format
 msgid "Class(es) available"
 msgstr ""
 
-#: include/functions.inc:2620
+#: include/functions.inc:2623
 msgid ""
 "You have installed the mixed groups plugin, but your schema configuration "
 "does not support this."
 msgstr ""
 
-#: include/functions.inc:2621
+#: include/functions.inc:2624
 msgid ""
 "In order to use mixed groups the objectClass \"posixGroup\" must be "
 "AUXILIARY"
 msgstr ""
 
-#: include/functions.inc:2624
+#: include/functions.inc:2627
 msgid ""
 "Your schema is configured to support mixed groups, but this plugin is not "
 "present."
 msgstr ""
 
-#: include/functions.inc:2625
+#: include/functions.inc:2628
 msgid "The objectClass \"posixGroup\" must be STRUCTURAL"
 msgstr ""
 
-#: include/functions.inc:3075 include/functions.inc:3096
-#: include/functions.inc:3134 include/functions.inc:3146
-#: include/functions.inc:3150 include/functions.inc:3157
-#: include/functions.inc:3166
+#: include/functions.inc:3106 include/functions.inc:3127
+#: include/functions.inc:3165 include/functions.inc:3177
+#: include/functions.inc:3181 include/functions.inc:3188
+#: include/functions.inc:3197
 msgid "Cannot allocate a free ID:"
 msgstr ""
 
-#: include/functions.inc:3075
+#: include/functions.inc:3106
 msgid "unknown idAllocation method!"
 msgstr ""
 
-#: include/functions.inc:3096
+#: include/functions.inc:3127
 #, php-format
 msgid "%sPoolMin >= %sPoolMax!"
 msgstr ""
 
-#: include/functions.inc:3126
+#: include/functions.inc:3157
 msgid "Cannot create sambaUnixIdPool entry!"
 msgstr ""
 
-#: include/functions.inc:3134
+#: include/functions.inc:3165
 msgid "sambaUnixIdPool is not unique!"
 msgstr ""
 
-#: include/functions.inc:3146 include/functions.inc:3150
+#: include/functions.inc:3177 include/functions.inc:3181
 msgid "no ID available!"
 msgstr ""
 
-#: include/functions.inc:3166
+#: include/functions.inc:3197
 msgid "maximum tries exceeded!"
 msgstr ""
 
-#: include/functions.inc:3228
+#: include/functions.inc:3259
 msgid "Cannot allocate a free ID!"
 msgstr ""
 
-#: include/functions.inc:3264
+#: include/functions.inc:3295
 #, php-format
 msgid "Cannot locate file '%s' - please run '%s' to fix this"
 msgstr ""
@@ -3597,6 +3598,11 @@ msgstr ""
 msgid "Delete process has been canceled by plugin '%s': %s"
 msgstr "Proces usuwania został anulowany przez dodatek '%s': %s"
 
+#: include/simpleplugin/class_simpleTabs.inc:405
+#, php-format
+msgid "Move from \"%s\" to \"%s\" failed"
+msgstr ""
+
 #: include/class_timezone.inc:52
 #, php-format
 msgid "The timezone setting \"%s\" in your configuration is not valid."
@@ -3659,63 +3665,63 @@ msgid ""
 "fusiondirectory-setup --check-config to fix this."
 msgstr ""
 
-#: html/index.php:175
+#: html/index.php:171
 msgid "Smarty error"
 msgstr "Błąd Smarty"
 
-#: html/index.php:177
+#: html/index.php:173
 #, php-format
 msgid "Directory \"%s\" specified as compile directory is not accessible!"
 msgstr ""
 
-#: html/index.php:212
+#: html/index.php:208
 msgid "Your FusionDirectory session has expired!"
 msgstr ""
 
-#: html/index.php:215
+#: html/index.php:211
 msgid "Your IP has changed!"
 msgstr ""
 
-#: html/index.php:218
+#: html/index.php:214
 #, php-format
 msgid "Invalid plugin parameter \"%s\"!"
 msgstr ""
 
-#: html/index.php:221
+#: html/index.php:217
 msgid "No session found!"
 msgstr ""
 
-#: html/index.php:256
+#: html/index.php:252
 msgid "LDAP schema check reported errors:"
 msgstr ""
 
-#: html/index.php:282
+#: html/index.php:278
 msgid "Please specify a valid username!"
 msgstr "Proszę podać prawidłową nazwę użytkownika!"
 
-#: html/index.php:285
+#: html/index.php:281
 msgid "Please specify your password!"
 msgstr "Proszę podać prawidłowe hasło!"
 
-#: html/index.php:304
+#: html/index.php:300
 msgid "Please check the username/password combination."
 msgstr "Proszę sprawdzić kombinację login/hasło."
 
-#: html/index.php:337
+#: html/index.php:333
 msgid "Account locked. Please contact your system administrator!"
 msgstr ""
 
-#: html/index.php:440
+#: html/index.php:436
 #, php-format
 msgid "CAS user \"%s\" could not be found in the LDAP"
 msgstr ""
 
-#: html/index.php:450
+#: html/index.php:446
 #, php-format
 msgid "CAS user \"%s\" match several users in the LDAP"
 msgstr ""
 
-#: html/index.php:485
+#: html/index.php:481
 msgid ""
 "Your browser has cookies disabled. Please enable cookies and reload this "
 "page before logging in!"
diff --git a/locale/pt/fusiondirectory.po b/locale/pt/fusiondirectory.po
index c6082c885ec82d19e65c4eb064a76bcde245c5f0..37d428f70aa3ba4ee8daf4b32dacd296f59fbc8c 100644
--- a/locale/pt/fusiondirectory.po
+++ b/locale/pt/fusiondirectory.po
@@ -7,8 +7,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory-109\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2016-01-04 11:54+0100\n"
-"PO-Revision-Date: 2016-01-04 10:52+0000\n"
+"POT-Creation-Date: 2016-01-22 11:26+0100\n"
+"PO-Revision-Date: 2016-01-22 10:24+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n"
 "Language-Team: Portuguese (http://www.transifex.com/fusiondirectory/FusionDirectory-109/language/pt/)\n"
 "MIME-Version: 1.0\n"
@@ -95,7 +95,7 @@ msgstr ""
 
 #: plugins/admin/groups/class_roleGeneric.inc:78
 #: plugins/admin/users/class_userManagement.inc:42
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:29
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:27
 #: setup/class_setupStep_Migrate.inc:871
 msgid "Users"
 msgstr "Usuários"
@@ -204,10 +204,10 @@ msgid "Only allow this group to connect to this list of hosts"
 msgstr ""
 
 #: plugins/admin/groups/class_group.inc:181
-#: plugins/personal/posix/class_posixAccount.inc:458 include/functions.inc:791
-#: include/functions.inc:2545 include/class_xml.inc:55
+#: plugins/personal/posix/class_posixAccount.inc:458 include/functions.inc:794
+#: include/functions.inc:2548 include/class_xml.inc:55
 #: include/simpleplugin/class_simpleTabs.inc:325 html/index.php:56
-#: html/index.php:62 html/index.php:485 html/class_passwordRecovery.inc:378
+#: html/index.php:62 html/index.php:481 html/class_passwordRecovery.inc:378
 #: setup/class_setupStep_Migrate.inc:572
 #: setup/class_setupStep_Migrate.inc:1083
 #: setup/class_setupStep_Migrate.inc:1202
@@ -250,7 +250,7 @@ msgstr ""
 msgid "Objects member of this group"
 msgstr ""
 
-#: plugins/admin/groups/class_ogroup.inc:317
+#: plugins/admin/groups/class_ogroup.inc:318
 msgid ""
 "Putting both workstations and terminals in the same group is not allowed"
 msgstr ""
@@ -873,19 +873,19 @@ msgstr ""
 msgid "Statistics"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:30
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:28
 msgid "Statistics about users"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:41
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:39
 msgid "Users statistics"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:46
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:44
 msgid "Groups statistics"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:51
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:49
 #: plugins/addons/dashboard/users_accounts.tpl.c:8
 msgid "Expired accounts"
 msgstr ""
@@ -2106,11 +2106,11 @@ msgstr ""
 #: include/class_config.inc:479 include/class_msgPool.inc:215
 #: include/class_msgPool.inc:235 include/class_msgPool.inc:265
 #: include/class_msgPool.inc:682 include/class_msgPool.inc:713
-#: include/class_msgPool.inc:740 include/functions.inc:3075
-#: include/functions.inc:3096 include/functions.inc:3126
-#: include/functions.inc:3134 include/functions.inc:3146
-#: include/functions.inc:3150 include/functions.inc:3157
-#: include/functions.inc:3166 include/functions.inc:3228
+#: include/class_msgPool.inc:740 include/functions.inc:3106
+#: include/functions.inc:3127 include/functions.inc:3157
+#: include/functions.inc:3165 include/functions.inc:3177
+#: include/functions.inc:3181 include/functions.inc:3188
+#: include/functions.inc:3197 include/functions.inc:3259
 #: include/class_msg_dialog.inc:128 include/class_xml.inc:58
 #: include/class_plugin.inc:1663 include/class_CopyPasteHandler.inc:278
 #: include/simpleplugin/class_dialogAttributes.inc:733
@@ -2121,11 +2121,12 @@ msgstr ""
 #: include/simpleplugin/class_attribute.inc:1877
 #: include/simpleplugin/class_attribute.inc:1879
 #: include/simpleplugin/class_simpleTabs.inc:90
+#: include/simpleplugin/class_simpleTabs.inc:405
 #: include/password-methods/class_password-methods-sasl.inc:60
 #: include/password-methods/class_password-methods-sasl.inc:86
-#: include/password-methods/class_password-methods.inc:434
-#: include/password-methods/class_password-methods.inc:444
-#: include/class_SnapshotHandler.inc:415 html/index.php:438 html/index.php:448
+#: include/password-methods/class_password-methods.inc:437
+#: include/password-methods/class_password-methods.inc:447
+#: include/class_SnapshotHandler.inc:415 html/index.php:434 html/index.php:444
 #: setup/class_setupStep_Migrate.inc:935
 #: ihtml/themes/default/msg_dialog.tpl.c:2 setup/setup_checks.tpl.c:5
 msgid "Error"
@@ -2244,8 +2245,8 @@ msgid "XML error in fusiondirectory.conf: %s at line %d"
 msgstr "Erro de XML no fusiondirectory.conf: %s na linha %d"
 
 #: include/class_config.inc:162 include/class_config.inc:300
-#: include/class_config.inc:1001 include/class_config.inc:1014
-#: include/functions.inc:660 include/class_timezone.inc:51
+#: include/class_config.inc:985 include/class_config.inc:998
+#: include/functions.inc:663 include/class_timezone.inc:51
 #: include/password-methods/class_password-methods-sha.inc:71
 #: include/password-methods/class_password-methods-ssha.inc:75
 #: include/password-methods/class_password-methods-ssha.inc:91
@@ -2262,16 +2263,16 @@ msgid ""
 msgstr ""
 
 #: include/class_config.inc:337 include/class_ldap.inc:917
-#: include/class_ldap.inc:1371 include/functions.inc:523
-#: include/functions.inc:675 include/functions.inc:722
-#: include/functions.inc:783 include/functions.inc:838
-#: include/functions.inc:2965 include/simpleplugin/class_simplePlugin.inc:545
+#: include/class_ldap.inc:1371 include/functions.inc:526
+#: include/functions.inc:678 include/functions.inc:725
+#: include/functions.inc:786 include/functions.inc:841
+#: include/functions.inc:2985 include/simpleplugin/class_simplePlugin.inc:545
 #: include/simpleplugin/class_attribute.inc:2895
-#: include/password-methods/class_password-methods.inc:196
+#: include/password-methods/class_password-methods.inc:199
 #: include/class_SnapshotHandler.inc:50 include/class_SnapshotHandler.inc:244
 #: include/class_SnapshotHandler.inc:277 include/class_SnapshotHandler.inc:292
 #: include/class_SnapshotHandler.inc:422 include/class_SnapshotHandler.inc:425
-#: html/index.php:364 html/class_passwordRecovery.inc:497
+#: html/index.php:360 html/class_passwordRecovery.inc:497
 #: setup/class_setupStep_Migrate.inc:451
 #: setup/class_setupStep_Migrate.inc:1130
 msgid "LDAP error"
@@ -2286,25 +2287,25 @@ msgstr "Não foi possível realizar bind para o LDAP. Por favor, contacte o admi
 msgid "The selected mail method (class %s) is not available"
 msgstr ""
 
-#: include/class_config.inc:1002
+#: include/class_config.inc:986
 #, php-format
 msgid ""
 "The snapshot functionality is enabled, but the required variable '%s' is not"
 " set."
 msgstr ""
 
-#: include/class_config.inc:1015
+#: include/class_config.inc:999
 #, php-format
 msgid ""
 "The snapshot functionality is enabled, but the required compression module "
 "is missing. Please install '%s'."
 msgstr ""
 
-#: include/class_config.inc:1120
+#: include/class_config.inc:1104
 msgid "All categories"
 msgstr "Todas as categorias"
 
-#: include/class_config.inc:1247
+#: include/class_config.inc:1231
 msgid "My account"
 msgstr "Minha conta"
 
@@ -2318,10 +2319,10 @@ msgid "LDAP performance is poor: last query took about %.2fs!"
 msgstr "A performance do LDAP está ruim: a última pesquisa levou cerca de %.2fs!"
 
 #: include/class_ldap.inc:868 include/class_ldap.inc:904
-#: include/functions.inc:565 include/functions.inc:650
-#: include/functions.inc:770 include/functions.inc:1189
-#: include/functions.inc:2272 include/functions.inc:2314
-#: include/functions.inc:2343 include/class_session.inc:50
+#: include/functions.inc:568 include/functions.inc:653
+#: include/functions.inc:773 include/functions.inc:1192
+#: include/functions.inc:2275 include/functions.inc:2317
+#: include/functions.inc:2346 include/class_session.inc:50
 #: include/class_session.inc:87 include/class_session.inc:125
 #: include/class_log.inc:96 include/class_acl.inc:118
 msgid "Internal error"
@@ -2947,7 +2948,7 @@ msgid ""
 "Fatal error: cannot instantiate class '%s' - try running '%s' to fix this"
 msgstr ""
 
-#: include/functions.inc:493 include/functions.inc:3263
+#: include/functions.inc:496 include/functions.inc:3294
 #: include/class_xml.inc:61 include/simpleplugin/class_simplePlugin.inc:263
 #: include/simpleplugin/class_simplePlugin.inc:268
 #: include/simpleplugin/class_simplePlugin.inc:280
@@ -2955,246 +2956,246 @@ msgstr ""
 msgid "Fatal error"
 msgstr ""
 
-#: include/functions.inc:494
+#: include/functions.inc:497
 #, php-format
 msgid "FATAL: Error when connecting the LDAP. Server said '%s'."
 msgstr ""
 
-#: include/functions.inc:565
+#: include/functions.inc:568
 msgid ""
 "Login (uid) is not unique inside the LDAP tree. Please contact your "
 "administrator."
 msgstr ""
 
-#: include/functions.inc:598
+#: include/functions.inc:601
 msgid "Authentication error"
 msgstr ""
 
-#: include/functions.inc:599
+#: include/functions.inc:602
 msgid ""
 "It seems your user password has expired. Please use <a "
 "href=\"recovery.php\">password recovery</a> to change it."
 msgstr ""
 
-#: include/functions.inc:650 include/functions.inc:770
+#: include/functions.inc:653 include/functions.inc:773
 msgid "Error while adding a lock. Contact the developers!"
 msgstr ""
 
-#: include/functions.inc:660
+#: include/functions.inc:663
 #, php-format
 msgid ""
 "Cannot create locking information in LDAP tree. Please contact your "
 "administrator!"
 msgstr ""
 
-#: include/functions.inc:660
+#: include/functions.inc:663
 #, php-format
 msgid "LDAP server returned: %s"
 msgstr ""
 
-#: include/functions.inc:791
+#: include/functions.inc:794
 msgid ""
 "Found multiple locks for object to be locked. This should not happen - "
 "cleaning up multiple references."
 msgstr ""
 
-#: include/functions.inc:1109
+#: include/functions.inc:1112
 #, php-format
 msgid "The size limit of %d entries is exceed!"
 msgstr ""
 
-#: include/functions.inc:1111
+#: include/functions.inc:1114
 #, php-format
 msgid ""
 "Set the new size limit to %s and show me this message if the limit still "
 "exceeds"
 msgstr ""
 
-#: include/functions.inc:1128
+#: include/functions.inc:1131
 msgid "Configure"
 msgstr "Configurar"
 
-#: include/functions.inc:1133
+#: include/functions.inc:1136
 msgid "incomplete"
 msgstr ""
 
-#: include/functions.inc:1538
+#: include/functions.inc:1541
 msgid "Continue anyway"
 msgstr ""
 
-#: include/functions.inc:1540
+#: include/functions.inc:1543
 msgid "Edit anyway"
 msgstr "Editar mesmo assim"
 
-#: include/functions.inc:1542
+#: include/functions.inc:1545
 #, php-format
 msgid "You're going to edit the LDAP entry/entries %s"
 msgstr ""
 
-#: include/functions.inc:1796
+#: include/functions.inc:1799
 msgid "Entries per page"
 msgstr ""
 
-#: include/functions.inc:1827 include/class_filter.inc:353
+#: include/functions.inc:1830 include/class_filter.inc:353
 msgid "Apply filter"
 msgstr "Aplicar filtro"
 
-#: include/functions.inc:2095
+#: include/functions.inc:2098
 #, php-format
 msgid "%sB"
 msgstr ""
 
-#: include/functions.inc:2096
+#: include/functions.inc:2099
 #, php-format
 msgid "%sKiB"
 msgstr ""
 
-#: include/functions.inc:2097
+#: include/functions.inc:2100
 #, php-format
 msgid "%sMiB"
 msgstr ""
 
-#: include/functions.inc:2098
+#: include/functions.inc:2101
 #, php-format
 msgid "%sGiB"
 msgstr ""
 
-#: include/functions.inc:2099
+#: include/functions.inc:2102
 #, php-format
 msgid "%sTiB"
 msgstr ""
 
-#: include/functions.inc:2100
+#: include/functions.inc:2103
 #, php-format
 msgid "%sPiB"
 msgstr ""
 
-#: include/functions.inc:2101
+#: include/functions.inc:2104
 #, php-format
 msgid "%sEiB"
 msgstr ""
 
-#: include/functions.inc:2102
+#: include/functions.inc:2105
 #, php-format
 msgid "%sZiB"
 msgstr ""
 
-#: include/functions.inc:2103
+#: include/functions.inc:2106
 #, php-format
 msgid "%sYiB"
 msgstr ""
 
-#: include/functions.inc:2135 include/class_filter.inc:315
+#: include/functions.inc:2138 include/class_filter.inc:315
 msgid "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
 msgstr ""
 
-#: include/functions.inc:2272
+#: include/functions.inc:2275
 #, php-format
 msgid ""
 "File '%s' could not be deleted. Try fusiondirectory-setup --check-"
 "directories to fix permissions."
 msgstr ""
 
-#: include/functions.inc:2314
+#: include/functions.inc:2317
 msgid "Cannot write to revision file!"
 msgstr ""
 
-#: include/functions.inc:2343
+#: include/functions.inc:2346
 msgid "Cannot read to revision file!"
 msgstr ""
 
-#: include/functions.inc:2545
+#: include/functions.inc:2548
 msgid "'nextIdHook' is not available. Using default base!"
 msgstr ""
 
-#: include/functions.inc:2563
+#: include/functions.inc:2566
 msgid "LDAP warning"
 msgstr ""
 
-#: include/functions.inc:2563
+#: include/functions.inc:2566
 msgid "Cannot get schema information from server. No schema check possible!"
 msgstr ""
 
-#: include/functions.inc:2581
+#: include/functions.inc:2584
 msgid ""
 "Used to lock currently edited entries to avoid multiple changes at the same "
 "time."
 msgstr ""
 
-#: include/functions.inc:2593
+#: include/functions.inc:2596
 #, php-format
 msgid "Missing required object class '%s'!"
 msgstr ""
 
-#: include/functions.inc:2596
+#: include/functions.inc:2599
 #, php-format
 msgid "Missing optional object class '%s'!"
 msgstr ""
 
-#: include/functions.inc:2600
+#: include/functions.inc:2603
 #, php-format
 msgid "Class(es) available"
 msgstr ""
 
-#: include/functions.inc:2620
+#: include/functions.inc:2623
 msgid ""
 "You have installed the mixed groups plugin, but your schema configuration "
 "does not support this."
 msgstr ""
 
-#: include/functions.inc:2621
+#: include/functions.inc:2624
 msgid ""
 "In order to use mixed groups the objectClass \"posixGroup\" must be "
 "AUXILIARY"
 msgstr ""
 
-#: include/functions.inc:2624
+#: include/functions.inc:2627
 msgid ""
 "Your schema is configured to support mixed groups, but this plugin is not "
 "present."
 msgstr ""
 
-#: include/functions.inc:2625
+#: include/functions.inc:2628
 msgid "The objectClass \"posixGroup\" must be STRUCTURAL"
 msgstr ""
 
-#: include/functions.inc:3075 include/functions.inc:3096
-#: include/functions.inc:3134 include/functions.inc:3146
-#: include/functions.inc:3150 include/functions.inc:3157
-#: include/functions.inc:3166
+#: include/functions.inc:3106 include/functions.inc:3127
+#: include/functions.inc:3165 include/functions.inc:3177
+#: include/functions.inc:3181 include/functions.inc:3188
+#: include/functions.inc:3197
 msgid "Cannot allocate a free ID:"
 msgstr ""
 
-#: include/functions.inc:3075
+#: include/functions.inc:3106
 msgid "unknown idAllocation method!"
 msgstr ""
 
-#: include/functions.inc:3096
+#: include/functions.inc:3127
 #, php-format
 msgid "%sPoolMin >= %sPoolMax!"
 msgstr ""
 
-#: include/functions.inc:3126
+#: include/functions.inc:3157
 msgid "Cannot create sambaUnixIdPool entry!"
 msgstr ""
 
-#: include/functions.inc:3134
+#: include/functions.inc:3165
 msgid "sambaUnixIdPool is not unique!"
 msgstr ""
 
-#: include/functions.inc:3146 include/functions.inc:3150
+#: include/functions.inc:3177 include/functions.inc:3181
 msgid "no ID available!"
 msgstr ""
 
-#: include/functions.inc:3166
+#: include/functions.inc:3197
 msgid "maximum tries exceeded!"
 msgstr ""
 
-#: include/functions.inc:3228
+#: include/functions.inc:3259
 msgid "Cannot allocate a free ID!"
 msgstr ""
 
-#: include/functions.inc:3264
+#: include/functions.inc:3295
 #, php-format
 msgid "Cannot locate file '%s' - please run '%s' to fix this"
 msgstr ""
@@ -3597,6 +3598,11 @@ msgstr ""
 msgid "Delete process has been canceled by plugin '%s': %s"
 msgstr ""
 
+#: include/simpleplugin/class_simpleTabs.inc:405
+#, php-format
+msgid "Move from \"%s\" to \"%s\" failed"
+msgstr ""
+
 #: include/class_timezone.inc:52
 #, php-format
 msgid "The timezone setting \"%s\" in your configuration is not valid."
@@ -3659,63 +3665,63 @@ msgid ""
 "fusiondirectory-setup --check-config to fix this."
 msgstr ""
 
-#: html/index.php:175
+#: html/index.php:171
 msgid "Smarty error"
 msgstr ""
 
-#: html/index.php:177
+#: html/index.php:173
 #, php-format
 msgid "Directory \"%s\" specified as compile directory is not accessible!"
 msgstr ""
 
-#: html/index.php:212
+#: html/index.php:208
 msgid "Your FusionDirectory session has expired!"
 msgstr ""
 
-#: html/index.php:215
+#: html/index.php:211
 msgid "Your IP has changed!"
 msgstr ""
 
-#: html/index.php:218
+#: html/index.php:214
 #, php-format
 msgid "Invalid plugin parameter \"%s\"!"
 msgstr ""
 
-#: html/index.php:221
+#: html/index.php:217
 msgid "No session found!"
 msgstr ""
 
-#: html/index.php:256
+#: html/index.php:252
 msgid "LDAP schema check reported errors:"
 msgstr ""
 
-#: html/index.php:282
+#: html/index.php:278
 msgid "Please specify a valid username!"
 msgstr "Por favor, especifique um nome de usuário válido!"
 
-#: html/index.php:285
+#: html/index.php:281
 msgid "Please specify your password!"
 msgstr "Por favor, especifique sua senha!"
 
-#: html/index.php:304
+#: html/index.php:300
 msgid "Please check the username/password combination."
 msgstr "Por favor, verifique a combinação usuário / senha"
 
-#: html/index.php:337
+#: html/index.php:333
 msgid "Account locked. Please contact your system administrator!"
 msgstr ""
 
-#: html/index.php:440
+#: html/index.php:436
 #, php-format
 msgid "CAS user \"%s\" could not be found in the LDAP"
 msgstr ""
 
-#: html/index.php:450
+#: html/index.php:446
 #, php-format
 msgid "CAS user \"%s\" match several users in the LDAP"
 msgstr ""
 
-#: html/index.php:485
+#: html/index.php:481
 msgid ""
 "Your browser has cookies disabled. Please enable cookies and reload this "
 "page before logging in!"
diff --git a/locale/pt_BR/fusiondirectory.po b/locale/pt_BR/fusiondirectory.po
index 3718523495f7f99d2d9a8a6ddd3d7a7d633d9aa8..49a37fdd502d8f00a79b3100305950e4e8be744b 100644
--- a/locale/pt_BR/fusiondirectory.po
+++ b/locale/pt_BR/fusiondirectory.po
@@ -7,8 +7,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory-109\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2016-01-04 11:54+0100\n"
-"PO-Revision-Date: 2016-01-04 10:52+0000\n"
+"POT-Creation-Date: 2016-01-22 11:26+0100\n"
+"PO-Revision-Date: 2016-01-22 10:24+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n"
 "Language-Team: Portuguese (Brazil) (http://www.transifex.com/fusiondirectory/FusionDirectory-109/language/pt_BR/)\n"
 "MIME-Version: 1.0\n"
@@ -95,7 +95,7 @@ msgstr "Número de Fax"
 
 #: plugins/admin/groups/class_roleGeneric.inc:78
 #: plugins/admin/users/class_userManagement.inc:42
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:29
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:27
 #: setup/class_setupStep_Migrate.inc:871
 msgid "Users"
 msgstr "Usuários"
@@ -204,10 +204,10 @@ msgid "Only allow this group to connect to this list of hosts"
 msgstr ""
 
 #: plugins/admin/groups/class_group.inc:181
-#: plugins/personal/posix/class_posixAccount.inc:458 include/functions.inc:791
-#: include/functions.inc:2545 include/class_xml.inc:55
+#: plugins/personal/posix/class_posixAccount.inc:458 include/functions.inc:794
+#: include/functions.inc:2548 include/class_xml.inc:55
 #: include/simpleplugin/class_simpleTabs.inc:325 html/index.php:56
-#: html/index.php:62 html/index.php:485 html/class_passwordRecovery.inc:378
+#: html/index.php:62 html/index.php:481 html/class_passwordRecovery.inc:378
 #: setup/class_setupStep_Migrate.inc:572
 #: setup/class_setupStep_Migrate.inc:1083
 #: setup/class_setupStep_Migrate.inc:1202
@@ -250,7 +250,7 @@ msgstr ""
 msgid "Objects member of this group"
 msgstr ""
 
-#: plugins/admin/groups/class_ogroup.inc:317
+#: plugins/admin/groups/class_ogroup.inc:318
 msgid ""
 "Putting both workstations and terminals in the same group is not allowed"
 msgstr ""
@@ -873,19 +873,19 @@ msgstr ""
 msgid "Statistics"
 msgstr "Estatísticas"
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:30
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:28
 msgid "Statistics about users"
 msgstr "Estatísticas a respeito de usuários"
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:41
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:39
 msgid "Users statistics"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:46
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:44
 msgid "Groups statistics"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:51
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:49
 #: plugins/addons/dashboard/users_accounts.tpl.c:8
 msgid "Expired accounts"
 msgstr "Contas expiradas"
@@ -2106,11 +2106,11 @@ msgstr "Selecionar tudo"
 #: include/class_config.inc:479 include/class_msgPool.inc:215
 #: include/class_msgPool.inc:235 include/class_msgPool.inc:265
 #: include/class_msgPool.inc:682 include/class_msgPool.inc:713
-#: include/class_msgPool.inc:740 include/functions.inc:3075
-#: include/functions.inc:3096 include/functions.inc:3126
-#: include/functions.inc:3134 include/functions.inc:3146
-#: include/functions.inc:3150 include/functions.inc:3157
-#: include/functions.inc:3166 include/functions.inc:3228
+#: include/class_msgPool.inc:740 include/functions.inc:3106
+#: include/functions.inc:3127 include/functions.inc:3157
+#: include/functions.inc:3165 include/functions.inc:3177
+#: include/functions.inc:3181 include/functions.inc:3188
+#: include/functions.inc:3197 include/functions.inc:3259
 #: include/class_msg_dialog.inc:128 include/class_xml.inc:58
 #: include/class_plugin.inc:1663 include/class_CopyPasteHandler.inc:278
 #: include/simpleplugin/class_dialogAttributes.inc:733
@@ -2121,11 +2121,12 @@ msgstr "Selecionar tudo"
 #: include/simpleplugin/class_attribute.inc:1877
 #: include/simpleplugin/class_attribute.inc:1879
 #: include/simpleplugin/class_simpleTabs.inc:90
+#: include/simpleplugin/class_simpleTabs.inc:405
 #: include/password-methods/class_password-methods-sasl.inc:60
 #: include/password-methods/class_password-methods-sasl.inc:86
-#: include/password-methods/class_password-methods.inc:434
-#: include/password-methods/class_password-methods.inc:444
-#: include/class_SnapshotHandler.inc:415 html/index.php:438 html/index.php:448
+#: include/password-methods/class_password-methods.inc:437
+#: include/password-methods/class_password-methods.inc:447
+#: include/class_SnapshotHandler.inc:415 html/index.php:434 html/index.php:444
 #: setup/class_setupStep_Migrate.inc:935
 #: ihtml/themes/default/msg_dialog.tpl.c:2 setup/setup_checks.tpl.c:5
 msgid "Error"
@@ -2244,8 +2245,8 @@ msgid "XML error in fusiondirectory.conf: %s at line %d"
 msgstr ""
 
 #: include/class_config.inc:162 include/class_config.inc:300
-#: include/class_config.inc:1001 include/class_config.inc:1014
-#: include/functions.inc:660 include/class_timezone.inc:51
+#: include/class_config.inc:985 include/class_config.inc:998
+#: include/functions.inc:663 include/class_timezone.inc:51
 #: include/password-methods/class_password-methods-sha.inc:71
 #: include/password-methods/class_password-methods-ssha.inc:75
 #: include/password-methods/class_password-methods-ssha.inc:91
@@ -2262,16 +2263,16 @@ msgid ""
 msgstr "Você está tentando decodificar algo que não está codificado: %s<br/>\\nPor favor, verifique se você não está utilizando um arquivo fusiondirectory.secrets enquanto suas senhas não estão encriptadas."
 
 #: include/class_config.inc:337 include/class_ldap.inc:917
-#: include/class_ldap.inc:1371 include/functions.inc:523
-#: include/functions.inc:675 include/functions.inc:722
-#: include/functions.inc:783 include/functions.inc:838
-#: include/functions.inc:2965 include/simpleplugin/class_simplePlugin.inc:545
+#: include/class_ldap.inc:1371 include/functions.inc:526
+#: include/functions.inc:678 include/functions.inc:725
+#: include/functions.inc:786 include/functions.inc:841
+#: include/functions.inc:2985 include/simpleplugin/class_simplePlugin.inc:545
 #: include/simpleplugin/class_attribute.inc:2895
-#: include/password-methods/class_password-methods.inc:196
+#: include/password-methods/class_password-methods.inc:199
 #: include/class_SnapshotHandler.inc:50 include/class_SnapshotHandler.inc:244
 #: include/class_SnapshotHandler.inc:277 include/class_SnapshotHandler.inc:292
 #: include/class_SnapshotHandler.inc:422 include/class_SnapshotHandler.inc:425
-#: html/index.php:364 html/class_passwordRecovery.inc:497
+#: html/index.php:360 html/class_passwordRecovery.inc:497
 #: setup/class_setupStep_Migrate.inc:451
 #: setup/class_setupStep_Migrate.inc:1130
 msgid "LDAP error"
@@ -2286,25 +2287,25 @@ msgstr ""
 msgid "The selected mail method (class %s) is not available"
 msgstr ""
 
-#: include/class_config.inc:1002
+#: include/class_config.inc:986
 #, php-format
 msgid ""
 "The snapshot functionality is enabled, but the required variable '%s' is not"
 " set."
 msgstr "A funcionalidade de snapshots está habilitada, mas a variável necessária '%s' não está definida."
 
-#: include/class_config.inc:1015
+#: include/class_config.inc:999
 #, php-format
 msgid ""
 "The snapshot functionality is enabled, but the required compression module "
 "is missing. Please install '%s'."
 msgstr "A funcionalidade de snapshots está habilitada, mas está faltando o módulo de compressão necessário. Por favor, instale '%s'."
 
-#: include/class_config.inc:1120
+#: include/class_config.inc:1104
 msgid "All categories"
 msgstr "Todas as categorias"
 
-#: include/class_config.inc:1247
+#: include/class_config.inc:1231
 msgid "My account"
 msgstr "Minha conta"
 
@@ -2318,10 +2319,10 @@ msgid "LDAP performance is poor: last query took about %.2fs!"
 msgstr ""
 
 #: include/class_ldap.inc:868 include/class_ldap.inc:904
-#: include/functions.inc:565 include/functions.inc:650
-#: include/functions.inc:770 include/functions.inc:1189
-#: include/functions.inc:2272 include/functions.inc:2314
-#: include/functions.inc:2343 include/class_session.inc:50
+#: include/functions.inc:568 include/functions.inc:653
+#: include/functions.inc:773 include/functions.inc:1192
+#: include/functions.inc:2275 include/functions.inc:2317
+#: include/functions.inc:2346 include/class_session.inc:50
 #: include/class_session.inc:87 include/class_session.inc:125
 #: include/class_log.inc:96 include/class_acl.inc:118
 msgid "Internal error"
@@ -2947,7 +2948,7 @@ msgid ""
 "Fatal error: cannot instantiate class '%s' - try running '%s' to fix this"
 msgstr ""
 
-#: include/functions.inc:493 include/functions.inc:3263
+#: include/functions.inc:496 include/functions.inc:3294
 #: include/class_xml.inc:61 include/simpleplugin/class_simplePlugin.inc:263
 #: include/simpleplugin/class_simplePlugin.inc:268
 #: include/simpleplugin/class_simplePlugin.inc:280
@@ -2955,246 +2956,246 @@ msgstr ""
 msgid "Fatal error"
 msgstr "Erro fatal"
 
-#: include/functions.inc:494
+#: include/functions.inc:497
 #, php-format
 msgid "FATAL: Error when connecting the LDAP. Server said '%s'."
 msgstr ""
 
-#: include/functions.inc:565
+#: include/functions.inc:568
 msgid ""
 "Login (uid) is not unique inside the LDAP tree. Please contact your "
 "administrator."
 msgstr ""
 
-#: include/functions.inc:598
+#: include/functions.inc:601
 msgid "Authentication error"
 msgstr "Erro de autenticação"
 
-#: include/functions.inc:599
+#: include/functions.inc:602
 msgid ""
 "It seems your user password has expired. Please use <a "
 "href=\"recovery.php\">password recovery</a> to change it."
 msgstr ""
 
-#: include/functions.inc:650 include/functions.inc:770
+#: include/functions.inc:653 include/functions.inc:773
 msgid "Error while adding a lock. Contact the developers!"
 msgstr ""
 
-#: include/functions.inc:660
+#: include/functions.inc:663
 #, php-format
 msgid ""
 "Cannot create locking information in LDAP tree. Please contact your "
 "administrator!"
 msgstr ""
 
-#: include/functions.inc:660
+#: include/functions.inc:663
 #, php-format
 msgid "LDAP server returned: %s"
 msgstr ""
 
-#: include/functions.inc:791
+#: include/functions.inc:794
 msgid ""
 "Found multiple locks for object to be locked. This should not happen - "
 "cleaning up multiple references."
 msgstr ""
 
-#: include/functions.inc:1109
+#: include/functions.inc:1112
 #, php-format
 msgid "The size limit of %d entries is exceed!"
 msgstr ""
 
-#: include/functions.inc:1111
+#: include/functions.inc:1114
 #, php-format
 msgid ""
 "Set the new size limit to %s and show me this message if the limit still "
 "exceeds"
 msgstr ""
 
-#: include/functions.inc:1128
+#: include/functions.inc:1131
 msgid "Configure"
 msgstr "Configurar"
 
-#: include/functions.inc:1133
+#: include/functions.inc:1136
 msgid "incomplete"
 msgstr ""
 
-#: include/functions.inc:1538
+#: include/functions.inc:1541
 msgid "Continue anyway"
 msgstr ""
 
-#: include/functions.inc:1540
+#: include/functions.inc:1543
 msgid "Edit anyway"
 msgstr ""
 
-#: include/functions.inc:1542
+#: include/functions.inc:1545
 #, php-format
 msgid "You're going to edit the LDAP entry/entries %s"
 msgstr ""
 
-#: include/functions.inc:1796
+#: include/functions.inc:1799
 msgid "Entries per page"
 msgstr ""
 
-#: include/functions.inc:1827 include/class_filter.inc:353
+#: include/functions.inc:1830 include/class_filter.inc:353
 msgid "Apply filter"
 msgstr ""
 
-#: include/functions.inc:2095
+#: include/functions.inc:2098
 #, php-format
 msgid "%sB"
 msgstr ""
 
-#: include/functions.inc:2096
+#: include/functions.inc:2099
 #, php-format
 msgid "%sKiB"
 msgstr ""
 
-#: include/functions.inc:2097
+#: include/functions.inc:2100
 #, php-format
 msgid "%sMiB"
 msgstr ""
 
-#: include/functions.inc:2098
+#: include/functions.inc:2101
 #, php-format
 msgid "%sGiB"
 msgstr ""
 
-#: include/functions.inc:2099
+#: include/functions.inc:2102
 #, php-format
 msgid "%sTiB"
 msgstr ""
 
-#: include/functions.inc:2100
+#: include/functions.inc:2103
 #, php-format
 msgid "%sPiB"
 msgstr ""
 
-#: include/functions.inc:2101
+#: include/functions.inc:2104
 #, php-format
 msgid "%sEiB"
 msgstr ""
 
-#: include/functions.inc:2102
+#: include/functions.inc:2105
 #, php-format
 msgid "%sZiB"
 msgstr ""
 
-#: include/functions.inc:2103
+#: include/functions.inc:2106
 #, php-format
 msgid "%sYiB"
 msgstr ""
 
-#: include/functions.inc:2135 include/class_filter.inc:315
+#: include/functions.inc:2138 include/class_filter.inc:315
 msgid "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
 msgstr ""
 
-#: include/functions.inc:2272
+#: include/functions.inc:2275
 #, php-format
 msgid ""
 "File '%s' could not be deleted. Try fusiondirectory-setup --check-"
 "directories to fix permissions."
 msgstr "Arquivo '%s' não pode ser deletado. Tente fusiondirectory-setup --check-directories para ajustas as permissões."
 
-#: include/functions.inc:2314
+#: include/functions.inc:2317
 msgid "Cannot write to revision file!"
 msgstr ""
 
-#: include/functions.inc:2343
+#: include/functions.inc:2346
 msgid "Cannot read to revision file!"
 msgstr ""
 
-#: include/functions.inc:2545
+#: include/functions.inc:2548
 msgid "'nextIdHook' is not available. Using default base!"
 msgstr "'nextIdHook' não está disponível. Utilizando base padrão."
 
-#: include/functions.inc:2563
+#: include/functions.inc:2566
 msgid "LDAP warning"
 msgstr ""
 
-#: include/functions.inc:2563
+#: include/functions.inc:2566
 msgid "Cannot get schema information from server. No schema check possible!"
 msgstr ""
 
-#: include/functions.inc:2581
+#: include/functions.inc:2584
 msgid ""
 "Used to lock currently edited entries to avoid multiple changes at the same "
 "time."
 msgstr ""
 
-#: include/functions.inc:2593
+#: include/functions.inc:2596
 #, php-format
 msgid "Missing required object class '%s'!"
 msgstr ""
 
-#: include/functions.inc:2596
+#: include/functions.inc:2599
 #, php-format
 msgid "Missing optional object class '%s'!"
 msgstr ""
 
-#: include/functions.inc:2600
+#: include/functions.inc:2603
 #, php-format
 msgid "Class(es) available"
 msgstr ""
 
-#: include/functions.inc:2620
+#: include/functions.inc:2623
 msgid ""
 "You have installed the mixed groups plugin, but your schema configuration "
 "does not support this."
 msgstr ""
 
-#: include/functions.inc:2621
+#: include/functions.inc:2624
 msgid ""
 "In order to use mixed groups the objectClass \"posixGroup\" must be "
 "AUXILIARY"
 msgstr ""
 
-#: include/functions.inc:2624
+#: include/functions.inc:2627
 msgid ""
 "Your schema is configured to support mixed groups, but this plugin is not "
 "present."
 msgstr ""
 
-#: include/functions.inc:2625
+#: include/functions.inc:2628
 msgid "The objectClass \"posixGroup\" must be STRUCTURAL"
 msgstr ""
 
-#: include/functions.inc:3075 include/functions.inc:3096
-#: include/functions.inc:3134 include/functions.inc:3146
-#: include/functions.inc:3150 include/functions.inc:3157
-#: include/functions.inc:3166
+#: include/functions.inc:3106 include/functions.inc:3127
+#: include/functions.inc:3165 include/functions.inc:3177
+#: include/functions.inc:3181 include/functions.inc:3188
+#: include/functions.inc:3197
 msgid "Cannot allocate a free ID:"
 msgstr ""
 
-#: include/functions.inc:3075
+#: include/functions.inc:3106
 msgid "unknown idAllocation method!"
 msgstr ""
 
-#: include/functions.inc:3096
+#: include/functions.inc:3127
 #, php-format
 msgid "%sPoolMin >= %sPoolMax!"
 msgstr ""
 
-#: include/functions.inc:3126
+#: include/functions.inc:3157
 msgid "Cannot create sambaUnixIdPool entry!"
 msgstr ""
 
-#: include/functions.inc:3134
+#: include/functions.inc:3165
 msgid "sambaUnixIdPool is not unique!"
 msgstr ""
 
-#: include/functions.inc:3146 include/functions.inc:3150
+#: include/functions.inc:3177 include/functions.inc:3181
 msgid "no ID available!"
 msgstr ""
 
-#: include/functions.inc:3166
+#: include/functions.inc:3197
 msgid "maximum tries exceeded!"
 msgstr ""
 
-#: include/functions.inc:3228
+#: include/functions.inc:3259
 msgid "Cannot allocate a free ID!"
 msgstr ""
 
-#: include/functions.inc:3264
+#: include/functions.inc:3295
 #, php-format
 msgid "Cannot locate file '%s' - please run '%s' to fix this"
 msgstr "Não foi possível localizar o arquivo '%s' - execute '%s' para solucionar o problema"
@@ -3597,6 +3598,11 @@ msgstr ""
 msgid "Delete process has been canceled by plugin '%s': %s"
 msgstr ""
 
+#: include/simpleplugin/class_simpleTabs.inc:405
+#, php-format
+msgid "Move from \"%s\" to \"%s\" failed"
+msgstr ""
+
 #: include/class_timezone.inc:52
 #, php-format
 msgid "The timezone setting \"%s\" in your configuration is not valid."
@@ -3659,63 +3665,63 @@ msgid ""
 "fusiondirectory-setup --check-config to fix this."
 msgstr "Arquivo de configuração %s/%s do FusionDirectory não está legível. Por favor, execute fusiondirectory-setup --check-config para corrigir isto."
 
-#: html/index.php:175
+#: html/index.php:171
 msgid "Smarty error"
 msgstr "Erro Smarty"
 
-#: html/index.php:177
+#: html/index.php:173
 #, php-format
 msgid "Directory \"%s\" specified as compile directory is not accessible!"
 msgstr ""
 
-#: html/index.php:212
+#: html/index.php:208
 msgid "Your FusionDirectory session has expired!"
 msgstr "Sua sessão foi encerrada!"
 
-#: html/index.php:215
+#: html/index.php:211
 msgid "Your IP has changed!"
 msgstr ""
 
-#: html/index.php:218
+#: html/index.php:214
 #, php-format
 msgid "Invalid plugin parameter \"%s\"!"
 msgstr ""
 
-#: html/index.php:221
+#: html/index.php:217
 msgid "No session found!"
 msgstr ""
 
-#: html/index.php:256
+#: html/index.php:252
 msgid "LDAP schema check reported errors:"
 msgstr ""
 
-#: html/index.php:282
+#: html/index.php:278
 msgid "Please specify a valid username!"
 msgstr "Por favor, especifique um nome de usuário válido!"
 
-#: html/index.php:285
+#: html/index.php:281
 msgid "Please specify your password!"
 msgstr "Por favor, especifique sua senha!"
 
-#: html/index.php:304
+#: html/index.php:300
 msgid "Please check the username/password combination."
 msgstr "Por favor, verifique o usuário ou senha."
 
-#: html/index.php:337
+#: html/index.php:333
 msgid "Account locked. Please contact your system administrator!"
 msgstr "Conta bloqueada. Entre em contato com o administrador do sistema!"
 
-#: html/index.php:440
+#: html/index.php:436
 #, php-format
 msgid "CAS user \"%s\" could not be found in the LDAP"
 msgstr ""
 
-#: html/index.php:450
+#: html/index.php:446
 #, php-format
 msgid "CAS user \"%s\" match several users in the LDAP"
 msgstr ""
 
-#: html/index.php:485
+#: html/index.php:481
 msgid ""
 "Your browser has cookies disabled. Please enable cookies and reload this "
 "page before logging in!"
diff --git a/locale/ru/fusiondirectory.po b/locale/ru/fusiondirectory.po
index 79f2f29c8ce1456133a5785e5c57264aeb43d986..06f23a266843dd8e21d16f0b42fd3fadce729ff4 100644
--- a/locale/ru/fusiondirectory.po
+++ b/locale/ru/fusiondirectory.po
@@ -9,8 +9,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory-109\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2016-01-04 11:54+0100\n"
-"PO-Revision-Date: 2016-01-04 10:52+0000\n"
+"POT-Creation-Date: 2016-01-22 11:26+0100\n"
+"PO-Revision-Date: 2016-01-22 10:24+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n"
 "Language-Team: Russian (http://www.transifex.com/fusiondirectory/FusionDirectory-109/language/ru/)\n"
 "MIME-Version: 1.0\n"
@@ -97,7 +97,7 @@ msgstr "Факс"
 
 #: plugins/admin/groups/class_roleGeneric.inc:78
 #: plugins/admin/users/class_userManagement.inc:42
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:29
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:27
 #: setup/class_setupStep_Migrate.inc:871
 msgid "Users"
 msgstr "Пользователи"
@@ -206,10 +206,10 @@ msgid "Only allow this group to connect to this list of hosts"
 msgstr ""
 
 #: plugins/admin/groups/class_group.inc:181
-#: plugins/personal/posix/class_posixAccount.inc:458 include/functions.inc:791
-#: include/functions.inc:2545 include/class_xml.inc:55
+#: plugins/personal/posix/class_posixAccount.inc:458 include/functions.inc:794
+#: include/functions.inc:2548 include/class_xml.inc:55
 #: include/simpleplugin/class_simpleTabs.inc:325 html/index.php:56
-#: html/index.php:62 html/index.php:485 html/class_passwordRecovery.inc:378
+#: html/index.php:62 html/index.php:481 html/class_passwordRecovery.inc:378
 #: setup/class_setupStep_Migrate.inc:572
 #: setup/class_setupStep_Migrate.inc:1083
 #: setup/class_setupStep_Migrate.inc:1202
@@ -252,7 +252,7 @@ msgstr "Включаемые объекты"
 msgid "Objects member of this group"
 msgstr ""
 
-#: plugins/admin/groups/class_ogroup.inc:317
+#: plugins/admin/groups/class_ogroup.inc:318
 msgid ""
 "Putting both workstations and terminals in the same group is not allowed"
 msgstr ""
@@ -875,19 +875,19 @@ msgstr "Отчеты"
 msgid "Statistics"
 msgstr "Статистика"
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:30
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:28
 msgid "Statistics about users"
 msgstr "Статистика о пользователях"
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:41
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:39
 msgid "Users statistics"
 msgstr "Статистика по пользователям"
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:46
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:44
 msgid "Groups statistics"
 msgstr "Статистика по группам"
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:51
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:49
 #: plugins/addons/dashboard/users_accounts.tpl.c:8
 msgid "Expired accounts"
 msgstr "Просроченные учетные записи"
@@ -2108,11 +2108,11 @@ msgstr "Выбрать все"
 #: include/class_config.inc:479 include/class_msgPool.inc:215
 #: include/class_msgPool.inc:235 include/class_msgPool.inc:265
 #: include/class_msgPool.inc:682 include/class_msgPool.inc:713
-#: include/class_msgPool.inc:740 include/functions.inc:3075
-#: include/functions.inc:3096 include/functions.inc:3126
-#: include/functions.inc:3134 include/functions.inc:3146
-#: include/functions.inc:3150 include/functions.inc:3157
-#: include/functions.inc:3166 include/functions.inc:3228
+#: include/class_msgPool.inc:740 include/functions.inc:3106
+#: include/functions.inc:3127 include/functions.inc:3157
+#: include/functions.inc:3165 include/functions.inc:3177
+#: include/functions.inc:3181 include/functions.inc:3188
+#: include/functions.inc:3197 include/functions.inc:3259
 #: include/class_msg_dialog.inc:128 include/class_xml.inc:58
 #: include/class_plugin.inc:1663 include/class_CopyPasteHandler.inc:278
 #: include/simpleplugin/class_dialogAttributes.inc:733
@@ -2123,11 +2123,12 @@ msgstr "Выбрать все"
 #: include/simpleplugin/class_attribute.inc:1877
 #: include/simpleplugin/class_attribute.inc:1879
 #: include/simpleplugin/class_simpleTabs.inc:90
+#: include/simpleplugin/class_simpleTabs.inc:405
 #: include/password-methods/class_password-methods-sasl.inc:60
 #: include/password-methods/class_password-methods-sasl.inc:86
-#: include/password-methods/class_password-methods.inc:434
-#: include/password-methods/class_password-methods.inc:444
-#: include/class_SnapshotHandler.inc:415 html/index.php:438 html/index.php:448
+#: include/password-methods/class_password-methods.inc:437
+#: include/password-methods/class_password-methods.inc:447
+#: include/class_SnapshotHandler.inc:415 html/index.php:434 html/index.php:444
 #: setup/class_setupStep_Migrate.inc:935
 #: ihtml/themes/default/msg_dialog.tpl.c:2 setup/setup_checks.tpl.c:5
 msgid "Error"
@@ -2246,8 +2247,8 @@ msgid "XML error in fusiondirectory.conf: %s at line %d"
 msgstr "Ошибка XML в fusiondirectory.conf: %s в строке %d"
 
 #: include/class_config.inc:162 include/class_config.inc:300
-#: include/class_config.inc:1001 include/class_config.inc:1014
-#: include/functions.inc:660 include/class_timezone.inc:51
+#: include/class_config.inc:985 include/class_config.inc:998
+#: include/functions.inc:663 include/class_timezone.inc:51
 #: include/password-methods/class_password-methods-sha.inc:71
 #: include/password-methods/class_password-methods-ssha.inc:75
 #: include/password-methods/class_password-methods-ssha.inc:91
@@ -2264,16 +2265,16 @@ msgid ""
 msgstr "Кажется вы пытаетесь расшифровать что то, что не было зашифровано: %s<br/>\\n Пожалуйста проверьте, что вы не используете файле fusiondirectory.secrets пароль в котором не зашифрован."
 
 #: include/class_config.inc:337 include/class_ldap.inc:917
-#: include/class_ldap.inc:1371 include/functions.inc:523
-#: include/functions.inc:675 include/functions.inc:722
-#: include/functions.inc:783 include/functions.inc:838
-#: include/functions.inc:2965 include/simpleplugin/class_simplePlugin.inc:545
+#: include/class_ldap.inc:1371 include/functions.inc:526
+#: include/functions.inc:678 include/functions.inc:725
+#: include/functions.inc:786 include/functions.inc:841
+#: include/functions.inc:2985 include/simpleplugin/class_simplePlugin.inc:545
 #: include/simpleplugin/class_attribute.inc:2895
-#: include/password-methods/class_password-methods.inc:196
+#: include/password-methods/class_password-methods.inc:199
 #: include/class_SnapshotHandler.inc:50 include/class_SnapshotHandler.inc:244
 #: include/class_SnapshotHandler.inc:277 include/class_SnapshotHandler.inc:292
 #: include/class_SnapshotHandler.inc:422 include/class_SnapshotHandler.inc:425
-#: html/index.php:364 html/class_passwordRecovery.inc:497
+#: html/index.php:360 html/class_passwordRecovery.inc:497
 #: setup/class_setupStep_Migrate.inc:451
 #: setup/class_setupStep_Migrate.inc:1130
 msgid "LDAP error"
@@ -2288,25 +2289,25 @@ msgstr "Не могу привязаться к LDAP. Пожалуйста св
 msgid "The selected mail method (class %s) is not available"
 msgstr "Выбранные почтовый метод (класс %s) не доступен"
 
-#: include/class_config.inc:1002
+#: include/class_config.inc:986
 #, php-format
 msgid ""
 "The snapshot functionality is enabled, but the required variable '%s' is not"
 " set."
 msgstr "Функционал снапшотов включен, но требуемая переменная '%s' не установлена."
 
-#: include/class_config.inc:1015
+#: include/class_config.inc:999
 #, php-format
 msgid ""
 "The snapshot functionality is enabled, but the required compression module "
 "is missing. Please install '%s'."
 msgstr "Функционал снапшотов включен, но требуемый модуль сжатия отсутствует. Пожалуйста установите '%s'."
 
-#: include/class_config.inc:1120
+#: include/class_config.inc:1104
 msgid "All categories"
 msgstr "Все категории"
 
-#: include/class_config.inc:1247
+#: include/class_config.inc:1231
 msgid "My account"
 msgstr "Моя учетная запись"
 
@@ -2320,10 +2321,10 @@ msgid "LDAP performance is poor: last query took about %.2fs!"
 msgstr "Низкая производительность LDAP: последний запрос занял около %.2fs!"
 
 #: include/class_ldap.inc:868 include/class_ldap.inc:904
-#: include/functions.inc:565 include/functions.inc:650
-#: include/functions.inc:770 include/functions.inc:1189
-#: include/functions.inc:2272 include/functions.inc:2314
-#: include/functions.inc:2343 include/class_session.inc:50
+#: include/functions.inc:568 include/functions.inc:653
+#: include/functions.inc:773 include/functions.inc:1192
+#: include/functions.inc:2275 include/functions.inc:2317
+#: include/functions.inc:2346 include/class_session.inc:50
 #: include/class_session.inc:87 include/class_session.inc:125
 #: include/class_log.inc:96 include/class_acl.inc:118
 msgid "Internal error"
@@ -2949,7 +2950,7 @@ msgid ""
 "Fatal error: cannot instantiate class '%s' - try running '%s' to fix this"
 msgstr "Критическая ошибка: не могу создать экземпляр класса '%s' - попробуйте запустить '%s' чтобы исправить это"
 
-#: include/functions.inc:493 include/functions.inc:3263
+#: include/functions.inc:496 include/functions.inc:3294
 #: include/class_xml.inc:61 include/simpleplugin/class_simplePlugin.inc:263
 #: include/simpleplugin/class_simplePlugin.inc:268
 #: include/simpleplugin/class_simplePlugin.inc:280
@@ -2957,246 +2958,246 @@ msgstr "Критическая ошибка: не могу создать экз
 msgid "Fatal error"
 msgstr "Фатальная ошибка"
 
-#: include/functions.inc:494
+#: include/functions.inc:497
 #, php-format
 msgid "FATAL: Error when connecting the LDAP. Server said '%s'."
 msgstr "FATAL: Ошибка при подключении к LDAP. Сервер сообщил '%s'."
 
-#: include/functions.inc:565
+#: include/functions.inc:568
 msgid ""
 "Login (uid) is not unique inside the LDAP tree. Please contact your "
 "administrator."
 msgstr "Логин (uid) не уникальный внутри LDAP дерева! Пожалуйста свяжитесь с вашим администратором."
 
-#: include/functions.inc:598
+#: include/functions.inc:601
 msgid "Authentication error"
 msgstr "Ошибка аутентификации"
 
-#: include/functions.inc:599
+#: include/functions.inc:602
 msgid ""
 "It seems your user password has expired. Please use <a "
 "href=\"recovery.php\">password recovery</a> to change it."
 msgstr ""
 
-#: include/functions.inc:650 include/functions.inc:770
+#: include/functions.inc:653 include/functions.inc:773
 msgid "Error while adding a lock. Contact the developers!"
 msgstr "Ошибка при добавлении блокировки. Свяжитесь с разработчиками!"
 
-#: include/functions.inc:660
+#: include/functions.inc:663
 #, php-format
 msgid ""
 "Cannot create locking information in LDAP tree. Please contact your "
 "administrator!"
 msgstr "Невозможно создать информацию о блокировки в LDAP дереве. Пожалуйста свяжитесь с вашим администратором!"
 
-#: include/functions.inc:660
+#: include/functions.inc:663
 #, php-format
 msgid "LDAP server returned: %s"
 msgstr "LDAP сервер вернул: %s"
 
-#: include/functions.inc:791
+#: include/functions.inc:794
 msgid ""
 "Found multiple locks for object to be locked. This should not happen - "
 "cleaning up multiple references."
 msgstr "Найдены множественные блокировки для заблокированного объекта. Это не должно было случиться - очистите их."
 
-#: include/functions.inc:1109
+#: include/functions.inc:1112
 #, php-format
 msgid "The size limit of %d entries is exceed!"
 msgstr "Найдено более %d объектов."
 
-#: include/functions.inc:1111
+#: include/functions.inc:1114
 #, php-format
 msgid ""
 "Set the new size limit to %s and show me this message if the limit still "
 "exceeds"
 msgstr "Установить новое значение лимита в %s и показать мне это сообщение если лимит будет исчерпан."
 
-#: include/functions.inc:1128
+#: include/functions.inc:1131
 msgid "Configure"
 msgstr "Настроить"
 
-#: include/functions.inc:1133
+#: include/functions.inc:1136
 msgid "incomplete"
 msgstr "не полный"
 
-#: include/functions.inc:1538
+#: include/functions.inc:1541
 msgid "Continue anyway"
 msgstr "Продолжить в любом случае"
 
-#: include/functions.inc:1540
+#: include/functions.inc:1543
 msgid "Edit anyway"
 msgstr "Редактировать в любом случае"
 
-#: include/functions.inc:1542
+#: include/functions.inc:1545
 #, php-format
 msgid "You're going to edit the LDAP entry/entries %s"
 msgstr "Вы собираетесь редактировать LDAP запись/записи %s"
 
-#: include/functions.inc:1796
+#: include/functions.inc:1799
 msgid "Entries per page"
 msgstr "Записей на странице"
 
-#: include/functions.inc:1827 include/class_filter.inc:353
+#: include/functions.inc:1830 include/class_filter.inc:353
 msgid "Apply filter"
 msgstr "Применить фильтр"
 
-#: include/functions.inc:2095
+#: include/functions.inc:2098
 #, php-format
 msgid "%sB"
 msgstr "%sB"
 
-#: include/functions.inc:2096
+#: include/functions.inc:2099
 #, php-format
 msgid "%sKiB"
 msgstr "%sKiB"
 
-#: include/functions.inc:2097
+#: include/functions.inc:2100
 #, php-format
 msgid "%sMiB"
 msgstr "%sMiB"
 
-#: include/functions.inc:2098
+#: include/functions.inc:2101
 #, php-format
 msgid "%sGiB"
 msgstr "%sGiB"
 
-#: include/functions.inc:2099
+#: include/functions.inc:2102
 #, php-format
 msgid "%sTiB"
 msgstr "%sTiB"
 
-#: include/functions.inc:2100
+#: include/functions.inc:2103
 #, php-format
 msgid "%sPiB"
 msgstr "%sPiB"
 
-#: include/functions.inc:2101
+#: include/functions.inc:2104
 #, php-format
 msgid "%sEiB"
 msgstr "%sEiB"
 
-#: include/functions.inc:2102
+#: include/functions.inc:2105
 #, php-format
 msgid "%sZiB"
 msgstr "%sZiB"
 
-#: include/functions.inc:2103
+#: include/functions.inc:2106
 #, php-format
 msgid "%sYiB"
 msgstr "%sYiB"
 
-#: include/functions.inc:2135 include/class_filter.inc:315
+#: include/functions.inc:2138 include/class_filter.inc:315
 msgid "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
 msgstr "*АБВГДЕЁЖЗИЙКЛМНОПРСТУФХЦЧШЩЫЭЮЯ0123456789"
 
-#: include/functions.inc:2272
+#: include/functions.inc:2275
 #, php-format
 msgid ""
 "File '%s' could not be deleted. Try fusiondirectory-setup --check-"
 "directories to fix permissions."
 msgstr "Файл '%s' не может быть удален. Попробуйте fusiondirectory-setup --check-directories чтобы исправить права."
 
-#: include/functions.inc:2314
+#: include/functions.inc:2317
 msgid "Cannot write to revision file!"
 msgstr "Не могу записать файл проверки!"
 
-#: include/functions.inc:2343
+#: include/functions.inc:2346
 msgid "Cannot read to revision file!"
 msgstr "Не могу прочитать файл проверки!"
 
-#: include/functions.inc:2545
+#: include/functions.inc:2548
 msgid "'nextIdHook' is not available. Using default base!"
 msgstr ""
 
-#: include/functions.inc:2563
+#: include/functions.inc:2566
 msgid "LDAP warning"
 msgstr "Предупреждение LDAP"
 
-#: include/functions.inc:2563
+#: include/functions.inc:2566
 msgid "Cannot get schema information from server. No schema check possible!"
 msgstr "Не могу получить информацию о схемах с сервера. Проверить схемы невозможно!"
 
-#: include/functions.inc:2581
+#: include/functions.inc:2584
 msgid ""
 "Used to lock currently edited entries to avoid multiple changes at the same "
 "time."
 msgstr ""
 
-#: include/functions.inc:2593
+#: include/functions.inc:2596
 #, php-format
 msgid "Missing required object class '%s'!"
 msgstr "Пропущен обязательный объектный класс '%s'!"
 
-#: include/functions.inc:2596
+#: include/functions.inc:2599
 #, php-format
 msgid "Missing optional object class '%s'!"
 msgstr "Пропущен дополнительный объектный класс '%s'!"
 
-#: include/functions.inc:2600
+#: include/functions.inc:2603
 #, php-format
 msgid "Class(es) available"
 msgstr "Доступные класс(ы)"
 
-#: include/functions.inc:2620
+#: include/functions.inc:2623
 msgid ""
 "You have installed the mixed groups plugin, but your schema configuration "
 "does not support this."
 msgstr ""
 
-#: include/functions.inc:2621
+#: include/functions.inc:2624
 msgid ""
 "In order to use mixed groups the objectClass \"posixGroup\" must be "
 "AUXILIARY"
 msgstr ""
 
-#: include/functions.inc:2624
+#: include/functions.inc:2627
 msgid ""
 "Your schema is configured to support mixed groups, but this plugin is not "
 "present."
 msgstr ""
 
-#: include/functions.inc:2625
+#: include/functions.inc:2628
 msgid "The objectClass \"posixGroup\" must be STRUCTURAL"
 msgstr ""
 
-#: include/functions.inc:3075 include/functions.inc:3096
-#: include/functions.inc:3134 include/functions.inc:3146
-#: include/functions.inc:3150 include/functions.inc:3157
-#: include/functions.inc:3166
+#: include/functions.inc:3106 include/functions.inc:3127
+#: include/functions.inc:3165 include/functions.inc:3177
+#: include/functions.inc:3181 include/functions.inc:3188
+#: include/functions.inc:3197
 msgid "Cannot allocate a free ID:"
 msgstr "Не могу выделить свободный ID:"
 
-#: include/functions.inc:3075
+#: include/functions.inc:3106
 msgid "unknown idAllocation method!"
 msgstr " неизвестный idAllocation метод!"
 
-#: include/functions.inc:3096
+#: include/functions.inc:3127
 #, php-format
 msgid "%sPoolMin >= %sPoolMax!"
 msgstr "%sPoolMin >= %sPoolMax!"
 
-#: include/functions.inc:3126
+#: include/functions.inc:3157
 msgid "Cannot create sambaUnixIdPool entry!"
 msgstr "Не могу создать запись sambaUnixIdPool!"
 
-#: include/functions.inc:3134
+#: include/functions.inc:3165
 msgid "sambaUnixIdPool is not unique!"
 msgstr "sambaUnixIdPool не уникальна!"
 
-#: include/functions.inc:3146 include/functions.inc:3150
+#: include/functions.inc:3177 include/functions.inc:3181
 msgid "no ID available!"
 msgstr "нет доступных ID!"
 
-#: include/functions.inc:3166
+#: include/functions.inc:3197
 msgid "maximum tries exceeded!"
 msgstr "Превышено максимальное число попыток!"
 
-#: include/functions.inc:3228
+#: include/functions.inc:3259
 msgid "Cannot allocate a free ID!"
 msgstr "Не могу выделить свободный ID!"
 
-#: include/functions.inc:3264
+#: include/functions.inc:3295
 #, php-format
 msgid "Cannot locate file '%s' - please run '%s' to fix this"
 msgstr "Не могу обнаружить файл '%s' - пожалуйста запустите '%s', чтобы исправить это."
@@ -3599,6 +3600,11 @@ msgstr ""
 msgid "Delete process has been canceled by plugin '%s': %s"
 msgstr "Процесс удаления был отменен плагином '%s': %s"
 
+#: include/simpleplugin/class_simpleTabs.inc:405
+#, php-format
+msgid "Move from \"%s\" to \"%s\" failed"
+msgstr ""
+
 #: include/class_timezone.inc:52
 #, php-format
 msgid "The timezone setting \"%s\" in your configuration is not valid."
@@ -3661,63 +3667,63 @@ msgid ""
 "fusiondirectory-setup --check-config to fix this."
 msgstr "Не прочесть конфигурацию FusionDirectory %s/%s. Чтобы исправить это пожалуйста запустите  fusiondirectory-setup --check-config."
 
-#: html/index.php:175
+#: html/index.php:171
 msgid "Smarty error"
 msgstr "Ошибка Smarty"
 
-#: html/index.php:177
+#: html/index.php:173
 #, php-format
 msgid "Directory \"%s\" specified as compile directory is not accessible!"
 msgstr ""
 
-#: html/index.php:212
+#: html/index.php:208
 msgid "Your FusionDirectory session has expired!"
 msgstr "Время вашей сессии истекло!"
 
-#: html/index.php:215
+#: html/index.php:211
 msgid "Your IP has changed!"
 msgstr "Ваш IP адрес изменен!"
 
-#: html/index.php:218
+#: html/index.php:214
 #, php-format
 msgid "Invalid plugin parameter \"%s\"!"
 msgstr ""
 
-#: html/index.php:221
+#: html/index.php:217
 msgid "No session found!"
 msgstr ""
 
-#: html/index.php:256
+#: html/index.php:252
 msgid "LDAP schema check reported errors:"
 msgstr ""
 
-#: html/index.php:282
+#: html/index.php:278
 msgid "Please specify a valid username!"
 msgstr "Введите корректное имя пользователя!"
 
-#: html/index.php:285
+#: html/index.php:281
 msgid "Please specify your password!"
 msgstr "Введите свой пароль!"
 
-#: html/index.php:304
+#: html/index.php:300
 msgid "Please check the username/password combination."
 msgstr "Проверьте, правильно ли вы ввели имя пользователя и пароль."
 
-#: html/index.php:337
+#: html/index.php:333
 msgid "Account locked. Please contact your system administrator!"
 msgstr "Учетная запись заблокирована. Пожалуйста свяжитесь с вашим системным администратором."
 
-#: html/index.php:440
+#: html/index.php:436
 #, php-format
 msgid "CAS user \"%s\" could not be found in the LDAP"
 msgstr ""
 
-#: html/index.php:450
+#: html/index.php:446
 #, php-format
 msgid "CAS user \"%s\" match several users in the LDAP"
 msgstr ""
 
-#: html/index.php:485
+#: html/index.php:481
 msgid ""
 "Your browser has cookies disabled. Please enable cookies and reload this "
 "page before logging in!"
diff --git a/locale/ru@petr1708/fusiondirectory.po b/locale/ru@petr1708/fusiondirectory.po
index a42d6ce015052e49ed4129b8bc80b6585e719e19..b8db0819f30e3ccf702a206a6dc197efd5ca32e1 100644
--- a/locale/ru@petr1708/fusiondirectory.po
+++ b/locale/ru@petr1708/fusiondirectory.po
@@ -7,8 +7,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory-109\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2016-01-04 11:54+0100\n"
-"PO-Revision-Date: 2016-01-04 10:52+0000\n"
+"POT-Creation-Date: 2016-01-22 11:26+0100\n"
+"PO-Revision-Date: 2016-01-22 10:24+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n"
 "Language-Team: Russian Petrine orthography (http://www.transifex.com/fusiondirectory/FusionDirectory-109/language/ru@petr1708/)\n"
 "MIME-Version: 1.0\n"
@@ -95,7 +95,7 @@ msgstr ""
 
 #: plugins/admin/groups/class_roleGeneric.inc:78
 #: plugins/admin/users/class_userManagement.inc:42
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:29
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:27
 #: setup/class_setupStep_Migrate.inc:871
 msgid "Users"
 msgstr ""
@@ -204,10 +204,10 @@ msgid "Only allow this group to connect to this list of hosts"
 msgstr ""
 
 #: plugins/admin/groups/class_group.inc:181
-#: plugins/personal/posix/class_posixAccount.inc:458 include/functions.inc:791
-#: include/functions.inc:2545 include/class_xml.inc:55
+#: plugins/personal/posix/class_posixAccount.inc:458 include/functions.inc:794
+#: include/functions.inc:2548 include/class_xml.inc:55
 #: include/simpleplugin/class_simpleTabs.inc:325 html/index.php:56
-#: html/index.php:62 html/index.php:485 html/class_passwordRecovery.inc:378
+#: html/index.php:62 html/index.php:481 html/class_passwordRecovery.inc:378
 #: setup/class_setupStep_Migrate.inc:572
 #: setup/class_setupStep_Migrate.inc:1083
 #: setup/class_setupStep_Migrate.inc:1202
@@ -250,7 +250,7 @@ msgstr ""
 msgid "Objects member of this group"
 msgstr ""
 
-#: plugins/admin/groups/class_ogroup.inc:317
+#: plugins/admin/groups/class_ogroup.inc:318
 msgid ""
 "Putting both workstations and terminals in the same group is not allowed"
 msgstr ""
@@ -873,19 +873,19 @@ msgstr ""
 msgid "Statistics"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:30
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:28
 msgid "Statistics about users"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:41
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:39
 msgid "Users statistics"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:46
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:44
 msgid "Groups statistics"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:51
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:49
 #: plugins/addons/dashboard/users_accounts.tpl.c:8
 msgid "Expired accounts"
 msgstr ""
@@ -2106,11 +2106,11 @@ msgstr ""
 #: include/class_config.inc:479 include/class_msgPool.inc:215
 #: include/class_msgPool.inc:235 include/class_msgPool.inc:265
 #: include/class_msgPool.inc:682 include/class_msgPool.inc:713
-#: include/class_msgPool.inc:740 include/functions.inc:3075
-#: include/functions.inc:3096 include/functions.inc:3126
-#: include/functions.inc:3134 include/functions.inc:3146
-#: include/functions.inc:3150 include/functions.inc:3157
-#: include/functions.inc:3166 include/functions.inc:3228
+#: include/class_msgPool.inc:740 include/functions.inc:3106
+#: include/functions.inc:3127 include/functions.inc:3157
+#: include/functions.inc:3165 include/functions.inc:3177
+#: include/functions.inc:3181 include/functions.inc:3188
+#: include/functions.inc:3197 include/functions.inc:3259
 #: include/class_msg_dialog.inc:128 include/class_xml.inc:58
 #: include/class_plugin.inc:1663 include/class_CopyPasteHandler.inc:278
 #: include/simpleplugin/class_dialogAttributes.inc:733
@@ -2121,11 +2121,12 @@ msgstr ""
 #: include/simpleplugin/class_attribute.inc:1877
 #: include/simpleplugin/class_attribute.inc:1879
 #: include/simpleplugin/class_simpleTabs.inc:90
+#: include/simpleplugin/class_simpleTabs.inc:405
 #: include/password-methods/class_password-methods-sasl.inc:60
 #: include/password-methods/class_password-methods-sasl.inc:86
-#: include/password-methods/class_password-methods.inc:434
-#: include/password-methods/class_password-methods.inc:444
-#: include/class_SnapshotHandler.inc:415 html/index.php:438 html/index.php:448
+#: include/password-methods/class_password-methods.inc:437
+#: include/password-methods/class_password-methods.inc:447
+#: include/class_SnapshotHandler.inc:415 html/index.php:434 html/index.php:444
 #: setup/class_setupStep_Migrate.inc:935
 #: ihtml/themes/default/msg_dialog.tpl.c:2 setup/setup_checks.tpl.c:5
 msgid "Error"
@@ -2244,8 +2245,8 @@ msgid "XML error in fusiondirectory.conf: %s at line %d"
 msgstr ""
 
 #: include/class_config.inc:162 include/class_config.inc:300
-#: include/class_config.inc:1001 include/class_config.inc:1014
-#: include/functions.inc:660 include/class_timezone.inc:51
+#: include/class_config.inc:985 include/class_config.inc:998
+#: include/functions.inc:663 include/class_timezone.inc:51
 #: include/password-methods/class_password-methods-sha.inc:71
 #: include/password-methods/class_password-methods-ssha.inc:75
 #: include/password-methods/class_password-methods-ssha.inc:91
@@ -2262,16 +2263,16 @@ msgid ""
 msgstr ""
 
 #: include/class_config.inc:337 include/class_ldap.inc:917
-#: include/class_ldap.inc:1371 include/functions.inc:523
-#: include/functions.inc:675 include/functions.inc:722
-#: include/functions.inc:783 include/functions.inc:838
-#: include/functions.inc:2965 include/simpleplugin/class_simplePlugin.inc:545
+#: include/class_ldap.inc:1371 include/functions.inc:526
+#: include/functions.inc:678 include/functions.inc:725
+#: include/functions.inc:786 include/functions.inc:841
+#: include/functions.inc:2985 include/simpleplugin/class_simplePlugin.inc:545
 #: include/simpleplugin/class_attribute.inc:2895
-#: include/password-methods/class_password-methods.inc:196
+#: include/password-methods/class_password-methods.inc:199
 #: include/class_SnapshotHandler.inc:50 include/class_SnapshotHandler.inc:244
 #: include/class_SnapshotHandler.inc:277 include/class_SnapshotHandler.inc:292
 #: include/class_SnapshotHandler.inc:422 include/class_SnapshotHandler.inc:425
-#: html/index.php:364 html/class_passwordRecovery.inc:497
+#: html/index.php:360 html/class_passwordRecovery.inc:497
 #: setup/class_setupStep_Migrate.inc:451
 #: setup/class_setupStep_Migrate.inc:1130
 msgid "LDAP error"
@@ -2286,25 +2287,25 @@ msgstr ""
 msgid "The selected mail method (class %s) is not available"
 msgstr ""
 
-#: include/class_config.inc:1002
+#: include/class_config.inc:986
 #, php-format
 msgid ""
 "The snapshot functionality is enabled, but the required variable '%s' is not"
 " set."
 msgstr ""
 
-#: include/class_config.inc:1015
+#: include/class_config.inc:999
 #, php-format
 msgid ""
 "The snapshot functionality is enabled, but the required compression module "
 "is missing. Please install '%s'."
 msgstr ""
 
-#: include/class_config.inc:1120
+#: include/class_config.inc:1104
 msgid "All categories"
 msgstr ""
 
-#: include/class_config.inc:1247
+#: include/class_config.inc:1231
 msgid "My account"
 msgstr ""
 
@@ -2318,10 +2319,10 @@ msgid "LDAP performance is poor: last query took about %.2fs!"
 msgstr ""
 
 #: include/class_ldap.inc:868 include/class_ldap.inc:904
-#: include/functions.inc:565 include/functions.inc:650
-#: include/functions.inc:770 include/functions.inc:1189
-#: include/functions.inc:2272 include/functions.inc:2314
-#: include/functions.inc:2343 include/class_session.inc:50
+#: include/functions.inc:568 include/functions.inc:653
+#: include/functions.inc:773 include/functions.inc:1192
+#: include/functions.inc:2275 include/functions.inc:2317
+#: include/functions.inc:2346 include/class_session.inc:50
 #: include/class_session.inc:87 include/class_session.inc:125
 #: include/class_log.inc:96 include/class_acl.inc:118
 msgid "Internal error"
@@ -2947,7 +2948,7 @@ msgid ""
 "Fatal error: cannot instantiate class '%s' - try running '%s' to fix this"
 msgstr ""
 
-#: include/functions.inc:493 include/functions.inc:3263
+#: include/functions.inc:496 include/functions.inc:3294
 #: include/class_xml.inc:61 include/simpleplugin/class_simplePlugin.inc:263
 #: include/simpleplugin/class_simplePlugin.inc:268
 #: include/simpleplugin/class_simplePlugin.inc:280
@@ -2955,246 +2956,246 @@ msgstr ""
 msgid "Fatal error"
 msgstr ""
 
-#: include/functions.inc:494
+#: include/functions.inc:497
 #, php-format
 msgid "FATAL: Error when connecting the LDAP. Server said '%s'."
 msgstr ""
 
-#: include/functions.inc:565
+#: include/functions.inc:568
 msgid ""
 "Login (uid) is not unique inside the LDAP tree. Please contact your "
 "administrator."
 msgstr ""
 
-#: include/functions.inc:598
+#: include/functions.inc:601
 msgid "Authentication error"
 msgstr ""
 
-#: include/functions.inc:599
+#: include/functions.inc:602
 msgid ""
 "It seems your user password has expired. Please use <a "
 "href=\"recovery.php\">password recovery</a> to change it."
 msgstr ""
 
-#: include/functions.inc:650 include/functions.inc:770
+#: include/functions.inc:653 include/functions.inc:773
 msgid "Error while adding a lock. Contact the developers!"
 msgstr ""
 
-#: include/functions.inc:660
+#: include/functions.inc:663
 #, php-format
 msgid ""
 "Cannot create locking information in LDAP tree. Please contact your "
 "administrator!"
 msgstr ""
 
-#: include/functions.inc:660
+#: include/functions.inc:663
 #, php-format
 msgid "LDAP server returned: %s"
 msgstr ""
 
-#: include/functions.inc:791
+#: include/functions.inc:794
 msgid ""
 "Found multiple locks for object to be locked. This should not happen - "
 "cleaning up multiple references."
 msgstr ""
 
-#: include/functions.inc:1109
+#: include/functions.inc:1112
 #, php-format
 msgid "The size limit of %d entries is exceed!"
 msgstr ""
 
-#: include/functions.inc:1111
+#: include/functions.inc:1114
 #, php-format
 msgid ""
 "Set the new size limit to %s and show me this message if the limit still "
 "exceeds"
 msgstr ""
 
-#: include/functions.inc:1128
+#: include/functions.inc:1131
 msgid "Configure"
 msgstr ""
 
-#: include/functions.inc:1133
+#: include/functions.inc:1136
 msgid "incomplete"
 msgstr ""
 
-#: include/functions.inc:1538
+#: include/functions.inc:1541
 msgid "Continue anyway"
 msgstr ""
 
-#: include/functions.inc:1540
+#: include/functions.inc:1543
 msgid "Edit anyway"
 msgstr ""
 
-#: include/functions.inc:1542
+#: include/functions.inc:1545
 #, php-format
 msgid "You're going to edit the LDAP entry/entries %s"
 msgstr ""
 
-#: include/functions.inc:1796
+#: include/functions.inc:1799
 msgid "Entries per page"
 msgstr ""
 
-#: include/functions.inc:1827 include/class_filter.inc:353
+#: include/functions.inc:1830 include/class_filter.inc:353
 msgid "Apply filter"
 msgstr ""
 
-#: include/functions.inc:2095
+#: include/functions.inc:2098
 #, php-format
 msgid "%sB"
 msgstr ""
 
-#: include/functions.inc:2096
+#: include/functions.inc:2099
 #, php-format
 msgid "%sKiB"
 msgstr ""
 
-#: include/functions.inc:2097
+#: include/functions.inc:2100
 #, php-format
 msgid "%sMiB"
 msgstr ""
 
-#: include/functions.inc:2098
+#: include/functions.inc:2101
 #, php-format
 msgid "%sGiB"
 msgstr ""
 
-#: include/functions.inc:2099
+#: include/functions.inc:2102
 #, php-format
 msgid "%sTiB"
 msgstr ""
 
-#: include/functions.inc:2100
+#: include/functions.inc:2103
 #, php-format
 msgid "%sPiB"
 msgstr ""
 
-#: include/functions.inc:2101
+#: include/functions.inc:2104
 #, php-format
 msgid "%sEiB"
 msgstr ""
 
-#: include/functions.inc:2102
+#: include/functions.inc:2105
 #, php-format
 msgid "%sZiB"
 msgstr ""
 
-#: include/functions.inc:2103
+#: include/functions.inc:2106
 #, php-format
 msgid "%sYiB"
 msgstr ""
 
-#: include/functions.inc:2135 include/class_filter.inc:315
+#: include/functions.inc:2138 include/class_filter.inc:315
 msgid "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
 msgstr ""
 
-#: include/functions.inc:2272
+#: include/functions.inc:2275
 #, php-format
 msgid ""
 "File '%s' could not be deleted. Try fusiondirectory-setup --check-"
 "directories to fix permissions."
 msgstr ""
 
-#: include/functions.inc:2314
+#: include/functions.inc:2317
 msgid "Cannot write to revision file!"
 msgstr ""
 
-#: include/functions.inc:2343
+#: include/functions.inc:2346
 msgid "Cannot read to revision file!"
 msgstr ""
 
-#: include/functions.inc:2545
+#: include/functions.inc:2548
 msgid "'nextIdHook' is not available. Using default base!"
 msgstr ""
 
-#: include/functions.inc:2563
+#: include/functions.inc:2566
 msgid "LDAP warning"
 msgstr ""
 
-#: include/functions.inc:2563
+#: include/functions.inc:2566
 msgid "Cannot get schema information from server. No schema check possible!"
 msgstr ""
 
-#: include/functions.inc:2581
+#: include/functions.inc:2584
 msgid ""
 "Used to lock currently edited entries to avoid multiple changes at the same "
 "time."
 msgstr ""
 
-#: include/functions.inc:2593
+#: include/functions.inc:2596
 #, php-format
 msgid "Missing required object class '%s'!"
 msgstr ""
 
-#: include/functions.inc:2596
+#: include/functions.inc:2599
 #, php-format
 msgid "Missing optional object class '%s'!"
 msgstr ""
 
-#: include/functions.inc:2600
+#: include/functions.inc:2603
 #, php-format
 msgid "Class(es) available"
 msgstr ""
 
-#: include/functions.inc:2620
+#: include/functions.inc:2623
 msgid ""
 "You have installed the mixed groups plugin, but your schema configuration "
 "does not support this."
 msgstr ""
 
-#: include/functions.inc:2621
+#: include/functions.inc:2624
 msgid ""
 "In order to use mixed groups the objectClass \"posixGroup\" must be "
 "AUXILIARY"
 msgstr ""
 
-#: include/functions.inc:2624
+#: include/functions.inc:2627
 msgid ""
 "Your schema is configured to support mixed groups, but this plugin is not "
 "present."
 msgstr ""
 
-#: include/functions.inc:2625
+#: include/functions.inc:2628
 msgid "The objectClass \"posixGroup\" must be STRUCTURAL"
 msgstr ""
 
-#: include/functions.inc:3075 include/functions.inc:3096
-#: include/functions.inc:3134 include/functions.inc:3146
-#: include/functions.inc:3150 include/functions.inc:3157
-#: include/functions.inc:3166
+#: include/functions.inc:3106 include/functions.inc:3127
+#: include/functions.inc:3165 include/functions.inc:3177
+#: include/functions.inc:3181 include/functions.inc:3188
+#: include/functions.inc:3197
 msgid "Cannot allocate a free ID:"
 msgstr ""
 
-#: include/functions.inc:3075
+#: include/functions.inc:3106
 msgid "unknown idAllocation method!"
 msgstr ""
 
-#: include/functions.inc:3096
+#: include/functions.inc:3127
 #, php-format
 msgid "%sPoolMin >= %sPoolMax!"
 msgstr ""
 
-#: include/functions.inc:3126
+#: include/functions.inc:3157
 msgid "Cannot create sambaUnixIdPool entry!"
 msgstr ""
 
-#: include/functions.inc:3134
+#: include/functions.inc:3165
 msgid "sambaUnixIdPool is not unique!"
 msgstr ""
 
-#: include/functions.inc:3146 include/functions.inc:3150
+#: include/functions.inc:3177 include/functions.inc:3181
 msgid "no ID available!"
 msgstr ""
 
-#: include/functions.inc:3166
+#: include/functions.inc:3197
 msgid "maximum tries exceeded!"
 msgstr ""
 
-#: include/functions.inc:3228
+#: include/functions.inc:3259
 msgid "Cannot allocate a free ID!"
 msgstr ""
 
-#: include/functions.inc:3264
+#: include/functions.inc:3295
 #, php-format
 msgid "Cannot locate file '%s' - please run '%s' to fix this"
 msgstr ""
@@ -3597,6 +3598,11 @@ msgstr ""
 msgid "Delete process has been canceled by plugin '%s': %s"
 msgstr ""
 
+#: include/simpleplugin/class_simpleTabs.inc:405
+#, php-format
+msgid "Move from \"%s\" to \"%s\" failed"
+msgstr ""
+
 #: include/class_timezone.inc:52
 #, php-format
 msgid "The timezone setting \"%s\" in your configuration is not valid."
@@ -3659,63 +3665,63 @@ msgid ""
 "fusiondirectory-setup --check-config to fix this."
 msgstr ""
 
-#: html/index.php:175
+#: html/index.php:171
 msgid "Smarty error"
 msgstr ""
 
-#: html/index.php:177
+#: html/index.php:173
 #, php-format
 msgid "Directory \"%s\" specified as compile directory is not accessible!"
 msgstr ""
 
-#: html/index.php:212
+#: html/index.php:208
 msgid "Your FusionDirectory session has expired!"
 msgstr ""
 
-#: html/index.php:215
+#: html/index.php:211
 msgid "Your IP has changed!"
 msgstr ""
 
-#: html/index.php:218
+#: html/index.php:214
 #, php-format
 msgid "Invalid plugin parameter \"%s\"!"
 msgstr ""
 
-#: html/index.php:221
+#: html/index.php:217
 msgid "No session found!"
 msgstr ""
 
-#: html/index.php:256
+#: html/index.php:252
 msgid "LDAP schema check reported errors:"
 msgstr ""
 
-#: html/index.php:282
+#: html/index.php:278
 msgid "Please specify a valid username!"
 msgstr ""
 
-#: html/index.php:285
+#: html/index.php:281
 msgid "Please specify your password!"
 msgstr ""
 
-#: html/index.php:304
+#: html/index.php:300
 msgid "Please check the username/password combination."
 msgstr ""
 
-#: html/index.php:337
+#: html/index.php:333
 msgid "Account locked. Please contact your system administrator!"
 msgstr ""
 
-#: html/index.php:440
+#: html/index.php:436
 #, php-format
 msgid "CAS user \"%s\" could not be found in the LDAP"
 msgstr ""
 
-#: html/index.php:450
+#: html/index.php:446
 #, php-format
 msgid "CAS user \"%s\" match several users in the LDAP"
 msgstr ""
 
-#: html/index.php:485
+#: html/index.php:481
 msgid ""
 "Your browser has cookies disabled. Please enable cookies and reload this "
 "page before logging in!"
diff --git a/locale/sv/fusiondirectory.po b/locale/sv/fusiondirectory.po
index daf4c77233a1fb0976fb8b4fb3f3ed6c8ce70bbd..29c28d23cd97ecf41ad97e212e12c4a549e74ca4 100644
--- a/locale/sv/fusiondirectory.po
+++ b/locale/sv/fusiondirectory.po
@@ -7,8 +7,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory-109\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2016-01-04 11:54+0100\n"
-"PO-Revision-Date: 2016-01-04 10:52+0000\n"
+"POT-Creation-Date: 2016-01-22 11:26+0100\n"
+"PO-Revision-Date: 2016-01-22 10:24+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n"
 "Language-Team: Swedish (http://www.transifex.com/fusiondirectory/FusionDirectory-109/language/sv/)\n"
 "MIME-Version: 1.0\n"
@@ -95,7 +95,7 @@ msgstr "Fax-nummer"
 
 #: plugins/admin/groups/class_roleGeneric.inc:78
 #: plugins/admin/users/class_userManagement.inc:42
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:29
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:27
 #: setup/class_setupStep_Migrate.inc:871
 msgid "Users"
 msgstr "Användare"
@@ -204,10 +204,10 @@ msgid "Only allow this group to connect to this list of hosts"
 msgstr ""
 
 #: plugins/admin/groups/class_group.inc:181
-#: plugins/personal/posix/class_posixAccount.inc:458 include/functions.inc:791
-#: include/functions.inc:2545 include/class_xml.inc:55
+#: plugins/personal/posix/class_posixAccount.inc:458 include/functions.inc:794
+#: include/functions.inc:2548 include/class_xml.inc:55
 #: include/simpleplugin/class_simpleTabs.inc:325 html/index.php:56
-#: html/index.php:62 html/index.php:485 html/class_passwordRecovery.inc:378
+#: html/index.php:62 html/index.php:481 html/class_passwordRecovery.inc:378
 #: setup/class_setupStep_Migrate.inc:572
 #: setup/class_setupStep_Migrate.inc:1083
 #: setup/class_setupStep_Migrate.inc:1202
@@ -250,7 +250,7 @@ msgstr "Medlemsobjekt"
 msgid "Objects member of this group"
 msgstr ""
 
-#: plugins/admin/groups/class_ogroup.inc:317
+#: plugins/admin/groups/class_ogroup.inc:318
 msgid ""
 "Putting both workstations and terminals in the same group is not allowed"
 msgstr ""
@@ -873,19 +873,19 @@ msgstr ""
 msgid "Statistics"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:30
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:28
 msgid "Statistics about users"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:41
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:39
 msgid "Users statistics"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:46
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:44
 msgid "Groups statistics"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:51
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:49
 #: plugins/addons/dashboard/users_accounts.tpl.c:8
 msgid "Expired accounts"
 msgstr ""
@@ -2106,11 +2106,11 @@ msgstr "Välj alla"
 #: include/class_config.inc:479 include/class_msgPool.inc:215
 #: include/class_msgPool.inc:235 include/class_msgPool.inc:265
 #: include/class_msgPool.inc:682 include/class_msgPool.inc:713
-#: include/class_msgPool.inc:740 include/functions.inc:3075
-#: include/functions.inc:3096 include/functions.inc:3126
-#: include/functions.inc:3134 include/functions.inc:3146
-#: include/functions.inc:3150 include/functions.inc:3157
-#: include/functions.inc:3166 include/functions.inc:3228
+#: include/class_msgPool.inc:740 include/functions.inc:3106
+#: include/functions.inc:3127 include/functions.inc:3157
+#: include/functions.inc:3165 include/functions.inc:3177
+#: include/functions.inc:3181 include/functions.inc:3188
+#: include/functions.inc:3197 include/functions.inc:3259
 #: include/class_msg_dialog.inc:128 include/class_xml.inc:58
 #: include/class_plugin.inc:1663 include/class_CopyPasteHandler.inc:278
 #: include/simpleplugin/class_dialogAttributes.inc:733
@@ -2121,11 +2121,12 @@ msgstr "Välj alla"
 #: include/simpleplugin/class_attribute.inc:1877
 #: include/simpleplugin/class_attribute.inc:1879
 #: include/simpleplugin/class_simpleTabs.inc:90
+#: include/simpleplugin/class_simpleTabs.inc:405
 #: include/password-methods/class_password-methods-sasl.inc:60
 #: include/password-methods/class_password-methods-sasl.inc:86
-#: include/password-methods/class_password-methods.inc:434
-#: include/password-methods/class_password-methods.inc:444
-#: include/class_SnapshotHandler.inc:415 html/index.php:438 html/index.php:448
+#: include/password-methods/class_password-methods.inc:437
+#: include/password-methods/class_password-methods.inc:447
+#: include/class_SnapshotHandler.inc:415 html/index.php:434 html/index.php:444
 #: setup/class_setupStep_Migrate.inc:935
 #: ihtml/themes/default/msg_dialog.tpl.c:2 setup/setup_checks.tpl.c:5
 msgid "Error"
@@ -2244,8 +2245,8 @@ msgid "XML error in fusiondirectory.conf: %s at line %d"
 msgstr "XML-fel i fusiondirectory.conf: %s på rad %d"
 
 #: include/class_config.inc:162 include/class_config.inc:300
-#: include/class_config.inc:1001 include/class_config.inc:1014
-#: include/functions.inc:660 include/class_timezone.inc:51
+#: include/class_config.inc:985 include/class_config.inc:998
+#: include/functions.inc:663 include/class_timezone.inc:51
 #: include/password-methods/class_password-methods-sha.inc:71
 #: include/password-methods/class_password-methods-ssha.inc:75
 #: include/password-methods/class_password-methods-ssha.inc:91
@@ -2262,16 +2263,16 @@ msgid ""
 msgstr "Det verkar som att du försöker avkoda något som inte är kodat : %s<br/>\\nVänligen kontroller att du inte använder en fusiondirectory.secrets-fil medan dina lösenord inte är krypterade."
 
 #: include/class_config.inc:337 include/class_ldap.inc:917
-#: include/class_ldap.inc:1371 include/functions.inc:523
-#: include/functions.inc:675 include/functions.inc:722
-#: include/functions.inc:783 include/functions.inc:838
-#: include/functions.inc:2965 include/simpleplugin/class_simplePlugin.inc:545
+#: include/class_ldap.inc:1371 include/functions.inc:526
+#: include/functions.inc:678 include/functions.inc:725
+#: include/functions.inc:786 include/functions.inc:841
+#: include/functions.inc:2985 include/simpleplugin/class_simplePlugin.inc:545
 #: include/simpleplugin/class_attribute.inc:2895
-#: include/password-methods/class_password-methods.inc:196
+#: include/password-methods/class_password-methods.inc:199
 #: include/class_SnapshotHandler.inc:50 include/class_SnapshotHandler.inc:244
 #: include/class_SnapshotHandler.inc:277 include/class_SnapshotHandler.inc:292
 #: include/class_SnapshotHandler.inc:422 include/class_SnapshotHandler.inc:425
-#: html/index.php:364 html/class_passwordRecovery.inc:497
+#: html/index.php:360 html/class_passwordRecovery.inc:497
 #: setup/class_setupStep_Migrate.inc:451
 #: setup/class_setupStep_Migrate.inc:1130
 msgid "LDAP error"
@@ -2286,25 +2287,25 @@ msgstr "Kan inte koppla mot LDAP. Vänligen kontakta systemadministratören"
 msgid "The selected mail method (class %s) is not available"
 msgstr "Den valda epostmetoden (klassen %s) är inte tillgänglig"
 
-#: include/class_config.inc:1002
+#: include/class_config.inc:986
 #, php-format
 msgid ""
 "The snapshot functionality is enabled, but the required variable '%s' is not"
 " set."
 msgstr "Funktionen för ögonblicksbilder är aktiverad, men värdet '%s' som krävs för funktionen är inte satt."
 
-#: include/class_config.inc:1015
+#: include/class_config.inc:999
 #, php-format
 msgid ""
 "The snapshot functionality is enabled, but the required compression module "
 "is missing. Please install '%s'."
 msgstr "Funktionen för ögonblicksbilder är aktiverad, men kompressionsmodulen som krävs saknas. Vänligen installera '%s'."
 
-#: include/class_config.inc:1120
+#: include/class_config.inc:1104
 msgid "All categories"
 msgstr "Alla kategorier"
 
-#: include/class_config.inc:1247
+#: include/class_config.inc:1231
 msgid "My account"
 msgstr "Mitt konto"
 
@@ -2318,10 +2319,10 @@ msgid "LDAP performance is poor: last query took about %.2fs!"
 msgstr "LDAP-prestanda är låg: senaste frågan tog runt %.2fs!"
 
 #: include/class_ldap.inc:868 include/class_ldap.inc:904
-#: include/functions.inc:565 include/functions.inc:650
-#: include/functions.inc:770 include/functions.inc:1189
-#: include/functions.inc:2272 include/functions.inc:2314
-#: include/functions.inc:2343 include/class_session.inc:50
+#: include/functions.inc:568 include/functions.inc:653
+#: include/functions.inc:773 include/functions.inc:1192
+#: include/functions.inc:2275 include/functions.inc:2317
+#: include/functions.inc:2346 include/class_session.inc:50
 #: include/class_session.inc:87 include/class_session.inc:125
 #: include/class_log.inc:96 include/class_acl.inc:118
 msgid "Internal error"
@@ -2947,7 +2948,7 @@ msgid ""
 "Fatal error: cannot instantiate class '%s' - try running '%s' to fix this"
 msgstr "Allvarligt fel: kan inte instansiera klassen '%s' - försök köra '%s' för att åtgärda detta"
 
-#: include/functions.inc:493 include/functions.inc:3263
+#: include/functions.inc:496 include/functions.inc:3294
 #: include/class_xml.inc:61 include/simpleplugin/class_simplePlugin.inc:263
 #: include/simpleplugin/class_simplePlugin.inc:268
 #: include/simpleplugin/class_simplePlugin.inc:280
@@ -2955,246 +2956,246 @@ msgstr "Allvarligt fel: kan inte instansiera klassen '%s' - försök köra '%s'
 msgid "Fatal error"
 msgstr "Allvarligt fel"
 
-#: include/functions.inc:494
+#: include/functions.inc:497
 #, php-format
 msgid "FATAL: Error when connecting the LDAP. Server said '%s'."
 msgstr "ALLVARLIGT: Fel vid försöka att koppla mot LDAP. Servern sa '%s'."
 
-#: include/functions.inc:565
+#: include/functions.inc:568
 msgid ""
 "Login (uid) is not unique inside the LDAP tree. Please contact your "
 "administrator."
 msgstr ""
 
-#: include/functions.inc:598
+#: include/functions.inc:601
 msgid "Authentication error"
 msgstr "Autentiseringsfel"
 
-#: include/functions.inc:599
+#: include/functions.inc:602
 msgid ""
 "It seems your user password has expired. Please use <a "
 "href=\"recovery.php\">password recovery</a> to change it."
 msgstr ""
 
-#: include/functions.inc:650 include/functions.inc:770
+#: include/functions.inc:653 include/functions.inc:773
 msgid "Error while adding a lock. Contact the developers!"
 msgstr "Fel uppstod när lås skulle läggas till. Kontakta utvecklarna!"
 
-#: include/functions.inc:660
+#: include/functions.inc:663
 #, php-format
 msgid ""
 "Cannot create locking information in LDAP tree. Please contact your "
 "administrator!"
 msgstr "Kan inte skapa låsinformation i LDAP-trädet. Vänligen kontakta din administratör!"
 
-#: include/functions.inc:660
+#: include/functions.inc:663
 #, php-format
 msgid "LDAP server returned: %s"
 msgstr "LDAP-server returnerade %s"
 
-#: include/functions.inc:791
+#: include/functions.inc:794
 msgid ""
 "Found multiple locks for object to be locked. This should not happen - "
 "cleaning up multiple references."
 msgstr "Hittade flera lås för objektet som ska låsas. Detta ska inte hända - rensar upp multipla referenser."
 
-#: include/functions.inc:1109
+#: include/functions.inc:1112
 #, php-format
 msgid "The size limit of %d entries is exceed!"
 msgstr "Storleksgränsen på %d poster har överskridits!"
 
-#: include/functions.inc:1111
+#: include/functions.inc:1114
 #, php-format
 msgid ""
 "Set the new size limit to %s and show me this message if the limit still "
 "exceeds"
 msgstr "Sätt ny storleksgräns till %s och visa mig meddelandet om gränsen fortfarande överskrids"
 
-#: include/functions.inc:1128
+#: include/functions.inc:1131
 msgid "Configure"
 msgstr "Konfigurera"
 
-#: include/functions.inc:1133
+#: include/functions.inc:1136
 msgid "incomplete"
 msgstr "ofullständig"
 
-#: include/functions.inc:1538
+#: include/functions.inc:1541
 msgid "Continue anyway"
 msgstr "Fortsätt ändå"
 
-#: include/functions.inc:1540
+#: include/functions.inc:1543
 msgid "Edit anyway"
 msgstr "Redigera ändå"
 
-#: include/functions.inc:1542
+#: include/functions.inc:1545
 #, php-format
 msgid "You're going to edit the LDAP entry/entries %s"
 msgstr "Du kommer att redigera LDAP-posten/posterna %s"
 
-#: include/functions.inc:1796
+#: include/functions.inc:1799
 msgid "Entries per page"
 msgstr "Poster per sida"
 
-#: include/functions.inc:1827 include/class_filter.inc:353
+#: include/functions.inc:1830 include/class_filter.inc:353
 msgid "Apply filter"
 msgstr "Aktivera filter"
 
-#: include/functions.inc:2095
+#: include/functions.inc:2098
 #, php-format
 msgid "%sB"
 msgstr ""
 
-#: include/functions.inc:2096
+#: include/functions.inc:2099
 #, php-format
 msgid "%sKiB"
 msgstr ""
 
-#: include/functions.inc:2097
+#: include/functions.inc:2100
 #, php-format
 msgid "%sMiB"
 msgstr ""
 
-#: include/functions.inc:2098
+#: include/functions.inc:2101
 #, php-format
 msgid "%sGiB"
 msgstr ""
 
-#: include/functions.inc:2099
+#: include/functions.inc:2102
 #, php-format
 msgid "%sTiB"
 msgstr ""
 
-#: include/functions.inc:2100
+#: include/functions.inc:2103
 #, php-format
 msgid "%sPiB"
 msgstr ""
 
-#: include/functions.inc:2101
+#: include/functions.inc:2104
 #, php-format
 msgid "%sEiB"
 msgstr ""
 
-#: include/functions.inc:2102
+#: include/functions.inc:2105
 #, php-format
 msgid "%sZiB"
 msgstr ""
 
-#: include/functions.inc:2103
+#: include/functions.inc:2106
 #, php-format
 msgid "%sYiB"
 msgstr ""
 
-#: include/functions.inc:2135 include/class_filter.inc:315
+#: include/functions.inc:2138 include/class_filter.inc:315
 msgid "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
 msgstr "*ABCDEFGHIJKLMNOPQRSTUVWXYZÅÄÖ0123456789"
 
-#: include/functions.inc:2272
+#: include/functions.inc:2275
 #, php-format
 msgid ""
 "File '%s' could not be deleted. Try fusiondirectory-setup --check-"
 "directories to fix permissions."
 msgstr "Filen '%s' kunde inte tas bort. Försök med fusiondirectory-setup --check-directories för att åtgärda rättighetsproblem."
 
-#: include/functions.inc:2314
+#: include/functions.inc:2317
 msgid "Cannot write to revision file!"
 msgstr "Kan inte skriva till revisionsfil!"
 
-#: include/functions.inc:2343
+#: include/functions.inc:2346
 msgid "Cannot read to revision file!"
 msgstr "Kan inte läsa revisionsfil!"
 
-#: include/functions.inc:2545
+#: include/functions.inc:2548
 msgid "'nextIdHook' is not available. Using default base!"
 msgstr "'nextIdHook' är inte tillgänglig. Använder standard-bas!"
 
-#: include/functions.inc:2563
+#: include/functions.inc:2566
 msgid "LDAP warning"
 msgstr "LDAP-varning"
 
-#: include/functions.inc:2563
+#: include/functions.inc:2566
 msgid "Cannot get schema information from server. No schema check possible!"
 msgstr "Kan inte hämta schemainformation från servern. Ingen schemakontroll är möjlig!"
 
-#: include/functions.inc:2581
+#: include/functions.inc:2584
 msgid ""
 "Used to lock currently edited entries to avoid multiple changes at the same "
 "time."
 msgstr "Används för att låsa aktuella poster under redigering för att undvika multipla ändringar på samma gång. "
 
-#: include/functions.inc:2593
+#: include/functions.inc:2596
 #, php-format
 msgid "Missing required object class '%s'!"
 msgstr "Saknar objektklass '%s' som krävs!"
 
-#: include/functions.inc:2596
+#: include/functions.inc:2599
 #, php-format
 msgid "Missing optional object class '%s'!"
 msgstr "Saknar valfri objektklass '%s' !"
 
-#: include/functions.inc:2600
+#: include/functions.inc:2603
 #, php-format
 msgid "Class(es) available"
 msgstr "Klass(er) tillgänglig(a)"
 
-#: include/functions.inc:2620
+#: include/functions.inc:2623
 msgid ""
 "You have installed the mixed groups plugin, but your schema configuration "
 "does not support this."
 msgstr ""
 
-#: include/functions.inc:2621
+#: include/functions.inc:2624
 msgid ""
 "In order to use mixed groups the objectClass \"posixGroup\" must be "
 "AUXILIARY"
 msgstr ""
 
-#: include/functions.inc:2624
+#: include/functions.inc:2627
 msgid ""
 "Your schema is configured to support mixed groups, but this plugin is not "
 "present."
 msgstr ""
 
-#: include/functions.inc:2625
+#: include/functions.inc:2628
 msgid "The objectClass \"posixGroup\" must be STRUCTURAL"
 msgstr ""
 
-#: include/functions.inc:3075 include/functions.inc:3096
-#: include/functions.inc:3134 include/functions.inc:3146
-#: include/functions.inc:3150 include/functions.inc:3157
-#: include/functions.inc:3166
+#: include/functions.inc:3106 include/functions.inc:3127
+#: include/functions.inc:3165 include/functions.inc:3177
+#: include/functions.inc:3181 include/functions.inc:3188
+#: include/functions.inc:3197
 msgid "Cannot allocate a free ID:"
 msgstr "Kan inte allokera ett fritt ID:"
 
-#: include/functions.inc:3075
+#: include/functions.inc:3106
 msgid "unknown idAllocation method!"
 msgstr "okänd idAllocation-metod!"
 
-#: include/functions.inc:3096
+#: include/functions.inc:3127
 #, php-format
 msgid "%sPoolMin >= %sPoolMax!"
 msgstr "%sPoolMin >= %sPoolMax!"
 
-#: include/functions.inc:3126
+#: include/functions.inc:3157
 msgid "Cannot create sambaUnixIdPool entry!"
 msgstr "Kan inte skapa sambaUnixIdPool-post!"
 
-#: include/functions.inc:3134
+#: include/functions.inc:3165
 msgid "sambaUnixIdPool is not unique!"
 msgstr "sambaUnixIdPool är inte unik!"
 
-#: include/functions.inc:3146 include/functions.inc:3150
+#: include/functions.inc:3177 include/functions.inc:3181
 msgid "no ID available!"
 msgstr "inget ID tillgängligt!"
 
-#: include/functions.inc:3166
+#: include/functions.inc:3197
 msgid "maximum tries exceeded!"
 msgstr "maximalt antal försök överskridet!"
 
-#: include/functions.inc:3228
+#: include/functions.inc:3259
 msgid "Cannot allocate a free ID!"
 msgstr "Kan inte allokera ett fritt ID!"
 
-#: include/functions.inc:3264
+#: include/functions.inc:3295
 #, php-format
 msgid "Cannot locate file '%s' - please run '%s' to fix this"
 msgstr "Kan inte lokalisera filen '%s' - vänligen kör '%s' för att åtgärda detta"
@@ -3597,6 +3598,11 @@ msgstr "Inga plugin-definitioner kunde hittas för att initialisera '%s', vänli
 msgid "Delete process has been canceled by plugin '%s': %s"
 msgstr "Borttagningsprocess har avbrutits av pluginen '%s': %s"
 
+#: include/simpleplugin/class_simpleTabs.inc:405
+#, php-format
+msgid "Move from \"%s\" to \"%s\" failed"
+msgstr ""
+
 #: include/class_timezone.inc:52
 #, php-format
 msgid "The timezone setting \"%s\" in your configuration is not valid."
@@ -3659,63 +3665,63 @@ msgid ""
 "fusiondirectory-setup --check-config to fix this."
 msgstr "FusionDirectory-konfiguration %s/%s är inte läsbar. Vänligen kör fusiondirectory-setup --check-config för att åtgärda detta."
 
-#: html/index.php:175
+#: html/index.php:171
 msgid "Smarty error"
 msgstr "Smarty-fel"
 
-#: html/index.php:177
+#: html/index.php:173
 #, php-format
 msgid "Directory \"%s\" specified as compile directory is not accessible!"
 msgstr ""
 
-#: html/index.php:212
+#: html/index.php:208
 msgid "Your FusionDirectory session has expired!"
 msgstr "Din FusionDirectory-session har gått ut!"
 
-#: html/index.php:215
+#: html/index.php:211
 msgid "Your IP has changed!"
 msgstr ""
 
-#: html/index.php:218
+#: html/index.php:214
 #, php-format
 msgid "Invalid plugin parameter \"%s\"!"
 msgstr ""
 
-#: html/index.php:221
+#: html/index.php:217
 msgid "No session found!"
 msgstr ""
 
-#: html/index.php:256
+#: html/index.php:252
 msgid "LDAP schema check reported errors:"
 msgstr ""
 
-#: html/index.php:282
+#: html/index.php:278
 msgid "Please specify a valid username!"
 msgstr "Ange ett giltigt användarnamn!"
 
-#: html/index.php:285
+#: html/index.php:281
 msgid "Please specify your password!"
 msgstr "Ange ditt lösenord!"
 
-#: html/index.php:304
+#: html/index.php:300
 msgid "Please check the username/password combination."
 msgstr "Kontrollera användarnamn/lösenord-kombinationen."
 
-#: html/index.php:337
+#: html/index.php:333
 msgid "Account locked. Please contact your system administrator!"
 msgstr "Kontot låst. Kontakta systemadministratören!"
 
-#: html/index.php:440
+#: html/index.php:436
 #, php-format
 msgid "CAS user \"%s\" could not be found in the LDAP"
 msgstr ""
 
-#: html/index.php:450
+#: html/index.php:446
 #, php-format
 msgid "CAS user \"%s\" match several users in the LDAP"
 msgstr ""
 
-#: html/index.php:485
+#: html/index.php:481
 msgid ""
 "Your browser has cookies disabled. Please enable cookies and reload this "
 "page before logging in!"
diff --git a/locale/ug/fusiondirectory.po b/locale/ug/fusiondirectory.po
index 4b878aa9ce03abc50e09e5b5aa369d0a725f3fe8..af7e5fa45845b93b3513ea3e36ff367375754b07 100644
--- a/locale/ug/fusiondirectory.po
+++ b/locale/ug/fusiondirectory.po
@@ -7,8 +7,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory-109\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2016-01-04 11:54+0100\n"
-"PO-Revision-Date: 2016-01-04 10:52+0000\n"
+"POT-Creation-Date: 2016-01-22 11:26+0100\n"
+"PO-Revision-Date: 2016-01-22 10:24+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n"
 "Language-Team: Uighur (http://www.transifex.com/fusiondirectory/FusionDirectory-109/language/ug/)\n"
 "MIME-Version: 1.0\n"
@@ -95,7 +95,7 @@ msgstr ""
 
 #: plugins/admin/groups/class_roleGeneric.inc:78
 #: plugins/admin/users/class_userManagement.inc:42
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:29
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:27
 #: setup/class_setupStep_Migrate.inc:871
 msgid "Users"
 msgstr ""
@@ -204,10 +204,10 @@ msgid "Only allow this group to connect to this list of hosts"
 msgstr ""
 
 #: plugins/admin/groups/class_group.inc:181
-#: plugins/personal/posix/class_posixAccount.inc:458 include/functions.inc:791
-#: include/functions.inc:2545 include/class_xml.inc:55
+#: plugins/personal/posix/class_posixAccount.inc:458 include/functions.inc:794
+#: include/functions.inc:2548 include/class_xml.inc:55
 #: include/simpleplugin/class_simpleTabs.inc:325 html/index.php:56
-#: html/index.php:62 html/index.php:485 html/class_passwordRecovery.inc:378
+#: html/index.php:62 html/index.php:481 html/class_passwordRecovery.inc:378
 #: setup/class_setupStep_Migrate.inc:572
 #: setup/class_setupStep_Migrate.inc:1083
 #: setup/class_setupStep_Migrate.inc:1202
@@ -250,7 +250,7 @@ msgstr ""
 msgid "Objects member of this group"
 msgstr ""
 
-#: plugins/admin/groups/class_ogroup.inc:317
+#: plugins/admin/groups/class_ogroup.inc:318
 msgid ""
 "Putting both workstations and terminals in the same group is not allowed"
 msgstr ""
@@ -873,19 +873,19 @@ msgstr ""
 msgid "Statistics"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:30
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:28
 msgid "Statistics about users"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:41
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:39
 msgid "Users statistics"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:46
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:44
 msgid "Groups statistics"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:51
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:49
 #: plugins/addons/dashboard/users_accounts.tpl.c:8
 msgid "Expired accounts"
 msgstr ""
@@ -2106,11 +2106,11 @@ msgstr ""
 #: include/class_config.inc:479 include/class_msgPool.inc:215
 #: include/class_msgPool.inc:235 include/class_msgPool.inc:265
 #: include/class_msgPool.inc:682 include/class_msgPool.inc:713
-#: include/class_msgPool.inc:740 include/functions.inc:3075
-#: include/functions.inc:3096 include/functions.inc:3126
-#: include/functions.inc:3134 include/functions.inc:3146
-#: include/functions.inc:3150 include/functions.inc:3157
-#: include/functions.inc:3166 include/functions.inc:3228
+#: include/class_msgPool.inc:740 include/functions.inc:3106
+#: include/functions.inc:3127 include/functions.inc:3157
+#: include/functions.inc:3165 include/functions.inc:3177
+#: include/functions.inc:3181 include/functions.inc:3188
+#: include/functions.inc:3197 include/functions.inc:3259
 #: include/class_msg_dialog.inc:128 include/class_xml.inc:58
 #: include/class_plugin.inc:1663 include/class_CopyPasteHandler.inc:278
 #: include/simpleplugin/class_dialogAttributes.inc:733
@@ -2121,11 +2121,12 @@ msgstr ""
 #: include/simpleplugin/class_attribute.inc:1877
 #: include/simpleplugin/class_attribute.inc:1879
 #: include/simpleplugin/class_simpleTabs.inc:90
+#: include/simpleplugin/class_simpleTabs.inc:405
 #: include/password-methods/class_password-methods-sasl.inc:60
 #: include/password-methods/class_password-methods-sasl.inc:86
-#: include/password-methods/class_password-methods.inc:434
-#: include/password-methods/class_password-methods.inc:444
-#: include/class_SnapshotHandler.inc:415 html/index.php:438 html/index.php:448
+#: include/password-methods/class_password-methods.inc:437
+#: include/password-methods/class_password-methods.inc:447
+#: include/class_SnapshotHandler.inc:415 html/index.php:434 html/index.php:444
 #: setup/class_setupStep_Migrate.inc:935
 #: ihtml/themes/default/msg_dialog.tpl.c:2 setup/setup_checks.tpl.c:5
 msgid "Error"
@@ -2244,8 +2245,8 @@ msgid "XML error in fusiondirectory.conf: %s at line %d"
 msgstr ""
 
 #: include/class_config.inc:162 include/class_config.inc:300
-#: include/class_config.inc:1001 include/class_config.inc:1014
-#: include/functions.inc:660 include/class_timezone.inc:51
+#: include/class_config.inc:985 include/class_config.inc:998
+#: include/functions.inc:663 include/class_timezone.inc:51
 #: include/password-methods/class_password-methods-sha.inc:71
 #: include/password-methods/class_password-methods-ssha.inc:75
 #: include/password-methods/class_password-methods-ssha.inc:91
@@ -2262,16 +2263,16 @@ msgid ""
 msgstr ""
 
 #: include/class_config.inc:337 include/class_ldap.inc:917
-#: include/class_ldap.inc:1371 include/functions.inc:523
-#: include/functions.inc:675 include/functions.inc:722
-#: include/functions.inc:783 include/functions.inc:838
-#: include/functions.inc:2965 include/simpleplugin/class_simplePlugin.inc:545
+#: include/class_ldap.inc:1371 include/functions.inc:526
+#: include/functions.inc:678 include/functions.inc:725
+#: include/functions.inc:786 include/functions.inc:841
+#: include/functions.inc:2985 include/simpleplugin/class_simplePlugin.inc:545
 #: include/simpleplugin/class_attribute.inc:2895
-#: include/password-methods/class_password-methods.inc:196
+#: include/password-methods/class_password-methods.inc:199
 #: include/class_SnapshotHandler.inc:50 include/class_SnapshotHandler.inc:244
 #: include/class_SnapshotHandler.inc:277 include/class_SnapshotHandler.inc:292
 #: include/class_SnapshotHandler.inc:422 include/class_SnapshotHandler.inc:425
-#: html/index.php:364 html/class_passwordRecovery.inc:497
+#: html/index.php:360 html/class_passwordRecovery.inc:497
 #: setup/class_setupStep_Migrate.inc:451
 #: setup/class_setupStep_Migrate.inc:1130
 msgid "LDAP error"
@@ -2286,25 +2287,25 @@ msgstr ""
 msgid "The selected mail method (class %s) is not available"
 msgstr ""
 
-#: include/class_config.inc:1002
+#: include/class_config.inc:986
 #, php-format
 msgid ""
 "The snapshot functionality is enabled, but the required variable '%s' is not"
 " set."
 msgstr ""
 
-#: include/class_config.inc:1015
+#: include/class_config.inc:999
 #, php-format
 msgid ""
 "The snapshot functionality is enabled, but the required compression module "
 "is missing. Please install '%s'."
 msgstr ""
 
-#: include/class_config.inc:1120
+#: include/class_config.inc:1104
 msgid "All categories"
 msgstr ""
 
-#: include/class_config.inc:1247
+#: include/class_config.inc:1231
 msgid "My account"
 msgstr ""
 
@@ -2318,10 +2319,10 @@ msgid "LDAP performance is poor: last query took about %.2fs!"
 msgstr ""
 
 #: include/class_ldap.inc:868 include/class_ldap.inc:904
-#: include/functions.inc:565 include/functions.inc:650
-#: include/functions.inc:770 include/functions.inc:1189
-#: include/functions.inc:2272 include/functions.inc:2314
-#: include/functions.inc:2343 include/class_session.inc:50
+#: include/functions.inc:568 include/functions.inc:653
+#: include/functions.inc:773 include/functions.inc:1192
+#: include/functions.inc:2275 include/functions.inc:2317
+#: include/functions.inc:2346 include/class_session.inc:50
 #: include/class_session.inc:87 include/class_session.inc:125
 #: include/class_log.inc:96 include/class_acl.inc:118
 msgid "Internal error"
@@ -2947,7 +2948,7 @@ msgid ""
 "Fatal error: cannot instantiate class '%s' - try running '%s' to fix this"
 msgstr ""
 
-#: include/functions.inc:493 include/functions.inc:3263
+#: include/functions.inc:496 include/functions.inc:3294
 #: include/class_xml.inc:61 include/simpleplugin/class_simplePlugin.inc:263
 #: include/simpleplugin/class_simplePlugin.inc:268
 #: include/simpleplugin/class_simplePlugin.inc:280
@@ -2955,246 +2956,246 @@ msgstr ""
 msgid "Fatal error"
 msgstr ""
 
-#: include/functions.inc:494
+#: include/functions.inc:497
 #, php-format
 msgid "FATAL: Error when connecting the LDAP. Server said '%s'."
 msgstr ""
 
-#: include/functions.inc:565
+#: include/functions.inc:568
 msgid ""
 "Login (uid) is not unique inside the LDAP tree. Please contact your "
 "administrator."
 msgstr ""
 
-#: include/functions.inc:598
+#: include/functions.inc:601
 msgid "Authentication error"
 msgstr ""
 
-#: include/functions.inc:599
+#: include/functions.inc:602
 msgid ""
 "It seems your user password has expired. Please use <a "
 "href=\"recovery.php\">password recovery</a> to change it."
 msgstr ""
 
-#: include/functions.inc:650 include/functions.inc:770
+#: include/functions.inc:653 include/functions.inc:773
 msgid "Error while adding a lock. Contact the developers!"
 msgstr ""
 
-#: include/functions.inc:660
+#: include/functions.inc:663
 #, php-format
 msgid ""
 "Cannot create locking information in LDAP tree. Please contact your "
 "administrator!"
 msgstr ""
 
-#: include/functions.inc:660
+#: include/functions.inc:663
 #, php-format
 msgid "LDAP server returned: %s"
 msgstr ""
 
-#: include/functions.inc:791
+#: include/functions.inc:794
 msgid ""
 "Found multiple locks for object to be locked. This should not happen - "
 "cleaning up multiple references."
 msgstr ""
 
-#: include/functions.inc:1109
+#: include/functions.inc:1112
 #, php-format
 msgid "The size limit of %d entries is exceed!"
 msgstr ""
 
-#: include/functions.inc:1111
+#: include/functions.inc:1114
 #, php-format
 msgid ""
 "Set the new size limit to %s and show me this message if the limit still "
 "exceeds"
 msgstr ""
 
-#: include/functions.inc:1128
+#: include/functions.inc:1131
 msgid "Configure"
 msgstr ""
 
-#: include/functions.inc:1133
+#: include/functions.inc:1136
 msgid "incomplete"
 msgstr ""
 
-#: include/functions.inc:1538
+#: include/functions.inc:1541
 msgid "Continue anyway"
 msgstr ""
 
-#: include/functions.inc:1540
+#: include/functions.inc:1543
 msgid "Edit anyway"
 msgstr ""
 
-#: include/functions.inc:1542
+#: include/functions.inc:1545
 #, php-format
 msgid "You're going to edit the LDAP entry/entries %s"
 msgstr ""
 
-#: include/functions.inc:1796
+#: include/functions.inc:1799
 msgid "Entries per page"
 msgstr ""
 
-#: include/functions.inc:1827 include/class_filter.inc:353
+#: include/functions.inc:1830 include/class_filter.inc:353
 msgid "Apply filter"
 msgstr ""
 
-#: include/functions.inc:2095
+#: include/functions.inc:2098
 #, php-format
 msgid "%sB"
 msgstr ""
 
-#: include/functions.inc:2096
+#: include/functions.inc:2099
 #, php-format
 msgid "%sKiB"
 msgstr ""
 
-#: include/functions.inc:2097
+#: include/functions.inc:2100
 #, php-format
 msgid "%sMiB"
 msgstr ""
 
-#: include/functions.inc:2098
+#: include/functions.inc:2101
 #, php-format
 msgid "%sGiB"
 msgstr ""
 
-#: include/functions.inc:2099
+#: include/functions.inc:2102
 #, php-format
 msgid "%sTiB"
 msgstr ""
 
-#: include/functions.inc:2100
+#: include/functions.inc:2103
 #, php-format
 msgid "%sPiB"
 msgstr ""
 
-#: include/functions.inc:2101
+#: include/functions.inc:2104
 #, php-format
 msgid "%sEiB"
 msgstr ""
 
-#: include/functions.inc:2102
+#: include/functions.inc:2105
 #, php-format
 msgid "%sZiB"
 msgstr ""
 
-#: include/functions.inc:2103
+#: include/functions.inc:2106
 #, php-format
 msgid "%sYiB"
 msgstr ""
 
-#: include/functions.inc:2135 include/class_filter.inc:315
+#: include/functions.inc:2138 include/class_filter.inc:315
 msgid "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
 msgstr ""
 
-#: include/functions.inc:2272
+#: include/functions.inc:2275
 #, php-format
 msgid ""
 "File '%s' could not be deleted. Try fusiondirectory-setup --check-"
 "directories to fix permissions."
 msgstr ""
 
-#: include/functions.inc:2314
+#: include/functions.inc:2317
 msgid "Cannot write to revision file!"
 msgstr ""
 
-#: include/functions.inc:2343
+#: include/functions.inc:2346
 msgid "Cannot read to revision file!"
 msgstr ""
 
-#: include/functions.inc:2545
+#: include/functions.inc:2548
 msgid "'nextIdHook' is not available. Using default base!"
 msgstr ""
 
-#: include/functions.inc:2563
+#: include/functions.inc:2566
 msgid "LDAP warning"
 msgstr ""
 
-#: include/functions.inc:2563
+#: include/functions.inc:2566
 msgid "Cannot get schema information from server. No schema check possible!"
 msgstr ""
 
-#: include/functions.inc:2581
+#: include/functions.inc:2584
 msgid ""
 "Used to lock currently edited entries to avoid multiple changes at the same "
 "time."
 msgstr ""
 
-#: include/functions.inc:2593
+#: include/functions.inc:2596
 #, php-format
 msgid "Missing required object class '%s'!"
 msgstr ""
 
-#: include/functions.inc:2596
+#: include/functions.inc:2599
 #, php-format
 msgid "Missing optional object class '%s'!"
 msgstr ""
 
-#: include/functions.inc:2600
+#: include/functions.inc:2603
 #, php-format
 msgid "Class(es) available"
 msgstr ""
 
-#: include/functions.inc:2620
+#: include/functions.inc:2623
 msgid ""
 "You have installed the mixed groups plugin, but your schema configuration "
 "does not support this."
 msgstr ""
 
-#: include/functions.inc:2621
+#: include/functions.inc:2624
 msgid ""
 "In order to use mixed groups the objectClass \"posixGroup\" must be "
 "AUXILIARY"
 msgstr ""
 
-#: include/functions.inc:2624
+#: include/functions.inc:2627
 msgid ""
 "Your schema is configured to support mixed groups, but this plugin is not "
 "present."
 msgstr ""
 
-#: include/functions.inc:2625
+#: include/functions.inc:2628
 msgid "The objectClass \"posixGroup\" must be STRUCTURAL"
 msgstr ""
 
-#: include/functions.inc:3075 include/functions.inc:3096
-#: include/functions.inc:3134 include/functions.inc:3146
-#: include/functions.inc:3150 include/functions.inc:3157
-#: include/functions.inc:3166
+#: include/functions.inc:3106 include/functions.inc:3127
+#: include/functions.inc:3165 include/functions.inc:3177
+#: include/functions.inc:3181 include/functions.inc:3188
+#: include/functions.inc:3197
 msgid "Cannot allocate a free ID:"
 msgstr ""
 
-#: include/functions.inc:3075
+#: include/functions.inc:3106
 msgid "unknown idAllocation method!"
 msgstr ""
 
-#: include/functions.inc:3096
+#: include/functions.inc:3127
 #, php-format
 msgid "%sPoolMin >= %sPoolMax!"
 msgstr ""
 
-#: include/functions.inc:3126
+#: include/functions.inc:3157
 msgid "Cannot create sambaUnixIdPool entry!"
 msgstr ""
 
-#: include/functions.inc:3134
+#: include/functions.inc:3165
 msgid "sambaUnixIdPool is not unique!"
 msgstr ""
 
-#: include/functions.inc:3146 include/functions.inc:3150
+#: include/functions.inc:3177 include/functions.inc:3181
 msgid "no ID available!"
 msgstr ""
 
-#: include/functions.inc:3166
+#: include/functions.inc:3197
 msgid "maximum tries exceeded!"
 msgstr ""
 
-#: include/functions.inc:3228
+#: include/functions.inc:3259
 msgid "Cannot allocate a free ID!"
 msgstr ""
 
-#: include/functions.inc:3264
+#: include/functions.inc:3295
 #, php-format
 msgid "Cannot locate file '%s' - please run '%s' to fix this"
 msgstr ""
@@ -3597,6 +3598,11 @@ msgstr ""
 msgid "Delete process has been canceled by plugin '%s': %s"
 msgstr ""
 
+#: include/simpleplugin/class_simpleTabs.inc:405
+#, php-format
+msgid "Move from \"%s\" to \"%s\" failed"
+msgstr ""
+
 #: include/class_timezone.inc:52
 #, php-format
 msgid "The timezone setting \"%s\" in your configuration is not valid."
@@ -3659,63 +3665,63 @@ msgid ""
 "fusiondirectory-setup --check-config to fix this."
 msgstr ""
 
-#: html/index.php:175
+#: html/index.php:171
 msgid "Smarty error"
 msgstr ""
 
-#: html/index.php:177
+#: html/index.php:173
 #, php-format
 msgid "Directory \"%s\" specified as compile directory is not accessible!"
 msgstr ""
 
-#: html/index.php:212
+#: html/index.php:208
 msgid "Your FusionDirectory session has expired!"
 msgstr ""
 
-#: html/index.php:215
+#: html/index.php:211
 msgid "Your IP has changed!"
 msgstr ""
 
-#: html/index.php:218
+#: html/index.php:214
 #, php-format
 msgid "Invalid plugin parameter \"%s\"!"
 msgstr ""
 
-#: html/index.php:221
+#: html/index.php:217
 msgid "No session found!"
 msgstr ""
 
-#: html/index.php:256
+#: html/index.php:252
 msgid "LDAP schema check reported errors:"
 msgstr ""
 
-#: html/index.php:282
+#: html/index.php:278
 msgid "Please specify a valid username!"
 msgstr ""
 
-#: html/index.php:285
+#: html/index.php:281
 msgid "Please specify your password!"
 msgstr ""
 
-#: html/index.php:304
+#: html/index.php:300
 msgid "Please check the username/password combination."
 msgstr ""
 
-#: html/index.php:337
+#: html/index.php:333
 msgid "Account locked. Please contact your system administrator!"
 msgstr ""
 
-#: html/index.php:440
+#: html/index.php:436
 #, php-format
 msgid "CAS user \"%s\" could not be found in the LDAP"
 msgstr ""
 
-#: html/index.php:450
+#: html/index.php:446
 #, php-format
 msgid "CAS user \"%s\" match several users in the LDAP"
 msgstr ""
 
-#: html/index.php:485
+#: html/index.php:481
 msgid ""
 "Your browser has cookies disabled. Please enable cookies and reload this "
 "page before logging in!"
diff --git a/locale/vi_VN/fusiondirectory.po b/locale/vi_VN/fusiondirectory.po
index b05f80abf81538d138d8e629b8b86e255f52fe09..23007965b1d6d41ebb24d7dd0eb69333a86f334a 100644
--- a/locale/vi_VN/fusiondirectory.po
+++ b/locale/vi_VN/fusiondirectory.po
@@ -7,8 +7,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory-109\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2016-01-04 11:54+0100\n"
-"PO-Revision-Date: 2016-01-04 10:52+0000\n"
+"POT-Creation-Date: 2016-01-22 11:26+0100\n"
+"PO-Revision-Date: 2016-01-22 10:24+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n"
 "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/fusiondirectory/FusionDirectory-109/language/vi_VN/)\n"
 "MIME-Version: 1.0\n"
@@ -95,7 +95,7 @@ msgstr "Số fax"
 
 #: plugins/admin/groups/class_roleGeneric.inc:78
 #: plugins/admin/users/class_userManagement.inc:42
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:29
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:27
 #: setup/class_setupStep_Migrate.inc:871
 msgid "Users"
 msgstr "Người dùng"
@@ -204,10 +204,10 @@ msgid "Only allow this group to connect to this list of hosts"
 msgstr ""
 
 #: plugins/admin/groups/class_group.inc:181
-#: plugins/personal/posix/class_posixAccount.inc:458 include/functions.inc:791
-#: include/functions.inc:2545 include/class_xml.inc:55
+#: plugins/personal/posix/class_posixAccount.inc:458 include/functions.inc:794
+#: include/functions.inc:2548 include/class_xml.inc:55
 #: include/simpleplugin/class_simpleTabs.inc:325 html/index.php:56
-#: html/index.php:62 html/index.php:485 html/class_passwordRecovery.inc:378
+#: html/index.php:62 html/index.php:481 html/class_passwordRecovery.inc:378
 #: setup/class_setupStep_Migrate.inc:572
 #: setup/class_setupStep_Migrate.inc:1083
 #: setup/class_setupStep_Migrate.inc:1202
@@ -250,7 +250,7 @@ msgstr "Các đối tượng thành viên"
 msgid "Objects member of this group"
 msgstr ""
 
-#: plugins/admin/groups/class_ogroup.inc:317
+#: plugins/admin/groups/class_ogroup.inc:318
 msgid ""
 "Putting both workstations and terminals in the same group is not allowed"
 msgstr ""
@@ -873,19 +873,19 @@ msgstr ""
 msgid "Statistics"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:30
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:28
 msgid "Statistics about users"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:41
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:39
 msgid "Users statistics"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:46
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:44
 msgid "Groups statistics"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:51
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:49
 #: plugins/addons/dashboard/users_accounts.tpl.c:8
 msgid "Expired accounts"
 msgstr ""
@@ -2106,11 +2106,11 @@ msgstr "Chọn tất"
 #: include/class_config.inc:479 include/class_msgPool.inc:215
 #: include/class_msgPool.inc:235 include/class_msgPool.inc:265
 #: include/class_msgPool.inc:682 include/class_msgPool.inc:713
-#: include/class_msgPool.inc:740 include/functions.inc:3075
-#: include/functions.inc:3096 include/functions.inc:3126
-#: include/functions.inc:3134 include/functions.inc:3146
-#: include/functions.inc:3150 include/functions.inc:3157
-#: include/functions.inc:3166 include/functions.inc:3228
+#: include/class_msgPool.inc:740 include/functions.inc:3106
+#: include/functions.inc:3127 include/functions.inc:3157
+#: include/functions.inc:3165 include/functions.inc:3177
+#: include/functions.inc:3181 include/functions.inc:3188
+#: include/functions.inc:3197 include/functions.inc:3259
 #: include/class_msg_dialog.inc:128 include/class_xml.inc:58
 #: include/class_plugin.inc:1663 include/class_CopyPasteHandler.inc:278
 #: include/simpleplugin/class_dialogAttributes.inc:733
@@ -2121,11 +2121,12 @@ msgstr "Chọn tất"
 #: include/simpleplugin/class_attribute.inc:1877
 #: include/simpleplugin/class_attribute.inc:1879
 #: include/simpleplugin/class_simpleTabs.inc:90
+#: include/simpleplugin/class_simpleTabs.inc:405
 #: include/password-methods/class_password-methods-sasl.inc:60
 #: include/password-methods/class_password-methods-sasl.inc:86
-#: include/password-methods/class_password-methods.inc:434
-#: include/password-methods/class_password-methods.inc:444
-#: include/class_SnapshotHandler.inc:415 html/index.php:438 html/index.php:448
+#: include/password-methods/class_password-methods.inc:437
+#: include/password-methods/class_password-methods.inc:447
+#: include/class_SnapshotHandler.inc:415 html/index.php:434 html/index.php:444
 #: setup/class_setupStep_Migrate.inc:935
 #: ihtml/themes/default/msg_dialog.tpl.c:2 setup/setup_checks.tpl.c:5
 msgid "Error"
@@ -2244,8 +2245,8 @@ msgid "XML error in fusiondirectory.conf: %s at line %d"
 msgstr "Lỗi XML trong fusiondirectory.conf: %s tại dòng %d"
 
 #: include/class_config.inc:162 include/class_config.inc:300
-#: include/class_config.inc:1001 include/class_config.inc:1014
-#: include/functions.inc:660 include/class_timezone.inc:51
+#: include/class_config.inc:985 include/class_config.inc:998
+#: include/functions.inc:663 include/class_timezone.inc:51
 #: include/password-methods/class_password-methods-sha.inc:71
 #: include/password-methods/class_password-methods-ssha.inc:75
 #: include/password-methods/class_password-methods-ssha.inc:91
@@ -2262,16 +2263,16 @@ msgid ""
 msgstr ""
 
 #: include/class_config.inc:337 include/class_ldap.inc:917
-#: include/class_ldap.inc:1371 include/functions.inc:523
-#: include/functions.inc:675 include/functions.inc:722
-#: include/functions.inc:783 include/functions.inc:838
-#: include/functions.inc:2965 include/simpleplugin/class_simplePlugin.inc:545
+#: include/class_ldap.inc:1371 include/functions.inc:526
+#: include/functions.inc:678 include/functions.inc:725
+#: include/functions.inc:786 include/functions.inc:841
+#: include/functions.inc:2985 include/simpleplugin/class_simplePlugin.inc:545
 #: include/simpleplugin/class_attribute.inc:2895
-#: include/password-methods/class_password-methods.inc:196
+#: include/password-methods/class_password-methods.inc:199
 #: include/class_SnapshotHandler.inc:50 include/class_SnapshotHandler.inc:244
 #: include/class_SnapshotHandler.inc:277 include/class_SnapshotHandler.inc:292
 #: include/class_SnapshotHandler.inc:422 include/class_SnapshotHandler.inc:425
-#: html/index.php:364 html/class_passwordRecovery.inc:497
+#: html/index.php:360 html/class_passwordRecovery.inc:497
 #: setup/class_setupStep_Migrate.inc:451
 #: setup/class_setupStep_Migrate.inc:1130
 msgid "LDAP error"
@@ -2286,25 +2287,25 @@ msgstr "Không thể nối kết với LDAP. Xin hãy liên lạc với với ad
 msgid "The selected mail method (class %s) is not available"
 msgstr ""
 
-#: include/class_config.inc:1002
+#: include/class_config.inc:986
 #, php-format
 msgid ""
 "The snapshot functionality is enabled, but the required variable '%s' is not"
 " set."
 msgstr "Chức năng Snapshot đã được bật, nhưng biến số được yêu cầu: '%s' vẫn chưa được thiết lập."
 
-#: include/class_config.inc:1015
+#: include/class_config.inc:999
 #, php-format
 msgid ""
 "The snapshot functionality is enabled, but the required compression module "
 "is missing. Please install '%s'."
 msgstr ""
 
-#: include/class_config.inc:1120
+#: include/class_config.inc:1104
 msgid "All categories"
 msgstr "Tất cả các mục"
 
-#: include/class_config.inc:1247
+#: include/class_config.inc:1231
 msgid "My account"
 msgstr "Tài khoản của tôi"
 
@@ -2318,10 +2319,10 @@ msgid "LDAP performance is poor: last query took about %.2fs!"
 msgstr "Khả năng hoạt động của LDAP rất thấp: truy vấn lần cuối mất khoảng %.2fs!"
 
 #: include/class_ldap.inc:868 include/class_ldap.inc:904
-#: include/functions.inc:565 include/functions.inc:650
-#: include/functions.inc:770 include/functions.inc:1189
-#: include/functions.inc:2272 include/functions.inc:2314
-#: include/functions.inc:2343 include/class_session.inc:50
+#: include/functions.inc:568 include/functions.inc:653
+#: include/functions.inc:773 include/functions.inc:1192
+#: include/functions.inc:2275 include/functions.inc:2317
+#: include/functions.inc:2346 include/class_session.inc:50
 #: include/class_session.inc:87 include/class_session.inc:125
 #: include/class_log.inc:96 include/class_acl.inc:118
 msgid "Internal error"
@@ -2947,7 +2948,7 @@ msgid ""
 "Fatal error: cannot instantiate class '%s' - try running '%s' to fix this"
 msgstr "Lỗi nghiêm trọng: không thể tạo ra lớp '%s' - hãy thử chạy '%s' để sửa lỗi này"
 
-#: include/functions.inc:493 include/functions.inc:3263
+#: include/functions.inc:496 include/functions.inc:3294
 #: include/class_xml.inc:61 include/simpleplugin/class_simplePlugin.inc:263
 #: include/simpleplugin/class_simplePlugin.inc:268
 #: include/simpleplugin/class_simplePlugin.inc:280
@@ -2955,246 +2956,246 @@ msgstr "Lỗi nghiêm trọng: không thể tạo ra lớp '%s' - hãy thử ch
 msgid "Fatal error"
 msgstr "Lỗi nặng"
 
-#: include/functions.inc:494
+#: include/functions.inc:497
 #, php-format
 msgid "FATAL: Error when connecting the LDAP. Server said '%s'."
 msgstr "LỖI NGHIÊM TRỌNG: Lỗi khi đang kết nối với LDAP. Server thông báo '%s'."
 
-#: include/functions.inc:565
+#: include/functions.inc:568
 msgid ""
 "Login (uid) is not unique inside the LDAP tree. Please contact your "
 "administrator."
 msgstr ""
 
-#: include/functions.inc:598
+#: include/functions.inc:601
 msgid "Authentication error"
 msgstr "Lỗi xác định thẩm quyền"
 
-#: include/functions.inc:599
+#: include/functions.inc:602
 msgid ""
 "It seems your user password has expired. Please use <a "
 "href=\"recovery.php\">password recovery</a> to change it."
 msgstr ""
 
-#: include/functions.inc:650 include/functions.inc:770
+#: include/functions.inc:653 include/functions.inc:773
 msgid "Error while adding a lock. Contact the developers!"
 msgstr "Lỗi khi đang thêm một khóa vào. Hãy liên lạc với các nhà phát triển!"
 
-#: include/functions.inc:660
+#: include/functions.inc:663
 #, php-format
 msgid ""
 "Cannot create locking information in LDAP tree. Please contact your "
 "administrator!"
 msgstr "Không thể tạo ra việc khóa thông tin trong cây LDAP.Xin hãy liên lạc với admin của bạn!"
 
-#: include/functions.inc:660
+#: include/functions.inc:663
 #, php-format
 msgid "LDAP server returned: %s"
 msgstr "LDAP server trả về: %s"
 
-#: include/functions.inc:791
+#: include/functions.inc:794
 msgid ""
 "Found multiple locks for object to be locked. This should not happen - "
 "cleaning up multiple references."
 msgstr "Tìm thấy nhiều khóa khác nhau để khóa đối tượng. Điều này không nên xảy ra - hãy dọn sạch các tham chiếu."
 
-#: include/functions.inc:1109
+#: include/functions.inc:1112
 #, php-format
 msgid "The size limit of %d entries is exceed!"
 msgstr "Đã vượt quá giới hạn kích cỡ của các entry %d!"
 
-#: include/functions.inc:1111
+#: include/functions.inc:1114
 #, php-format
 msgid ""
 "Set the new size limit to %s and show me this message if the limit still "
 "exceeds"
 msgstr "Thiết lập kích cỡ mới cho %s và cho tôi thấy tin nhắn nếu giới hạn này vẫn vượt quá tiêu chuẩn"
 
-#: include/functions.inc:1128
+#: include/functions.inc:1131
 msgid "Configure"
 msgstr "Cấu hình"
 
-#: include/functions.inc:1133
+#: include/functions.inc:1136
 msgid "incomplete"
 msgstr "chưa hoàn thành"
 
-#: include/functions.inc:1538
+#: include/functions.inc:1541
 msgid "Continue anyway"
 msgstr "Cứ tiếp tục"
 
-#: include/functions.inc:1540
+#: include/functions.inc:1543
 msgid "Edit anyway"
 msgstr "Cứ hiệu chỉnh"
 
-#: include/functions.inc:1542
+#: include/functions.inc:1545
 #, php-format
 msgid "You're going to edit the LDAP entry/entries %s"
 msgstr "Bạn sẽ hiệu chỉnh entry/các entry %s của LDAP"
 
-#: include/functions.inc:1796
+#: include/functions.inc:1799
 msgid "Entries per page"
 msgstr "các entry cho mỗi trang"
 
-#: include/functions.inc:1827 include/class_filter.inc:353
+#: include/functions.inc:1830 include/class_filter.inc:353
 msgid "Apply filter"
 msgstr "Áp dụng bộ lọc"
 
-#: include/functions.inc:2095
+#: include/functions.inc:2098
 #, php-format
 msgid "%sB"
 msgstr ""
 
-#: include/functions.inc:2096
+#: include/functions.inc:2099
 #, php-format
 msgid "%sKiB"
 msgstr ""
 
-#: include/functions.inc:2097
+#: include/functions.inc:2100
 #, php-format
 msgid "%sMiB"
 msgstr ""
 
-#: include/functions.inc:2098
+#: include/functions.inc:2101
 #, php-format
 msgid "%sGiB"
 msgstr ""
 
-#: include/functions.inc:2099
+#: include/functions.inc:2102
 #, php-format
 msgid "%sTiB"
 msgstr ""
 
-#: include/functions.inc:2100
+#: include/functions.inc:2103
 #, php-format
 msgid "%sPiB"
 msgstr ""
 
-#: include/functions.inc:2101
+#: include/functions.inc:2104
 #, php-format
 msgid "%sEiB"
 msgstr ""
 
-#: include/functions.inc:2102
+#: include/functions.inc:2105
 #, php-format
 msgid "%sZiB"
 msgstr ""
 
-#: include/functions.inc:2103
+#: include/functions.inc:2106
 #, php-format
 msgid "%sYiB"
 msgstr ""
 
-#: include/functions.inc:2135 include/class_filter.inc:315
+#: include/functions.inc:2138 include/class_filter.inc:315
 msgid "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
 msgstr "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
 
-#: include/functions.inc:2272
+#: include/functions.inc:2275
 #, php-format
 msgid ""
 "File '%s' could not be deleted. Try fusiondirectory-setup --check-"
 "directories to fix permissions."
 msgstr ""
 
-#: include/functions.inc:2314
+#: include/functions.inc:2317
 msgid "Cannot write to revision file!"
 msgstr "Không thể viết lên revision file!"
 
-#: include/functions.inc:2343
+#: include/functions.inc:2346
 msgid "Cannot read to revision file!"
 msgstr ""
 
-#: include/functions.inc:2545
+#: include/functions.inc:2548
 msgid "'nextIdHook' is not available. Using default base!"
 msgstr ""
 
-#: include/functions.inc:2563
+#: include/functions.inc:2566
 msgid "LDAP warning"
 msgstr "Cảnh báo LDAP"
 
-#: include/functions.inc:2563
+#: include/functions.inc:2566
 msgid "Cannot get schema information from server. No schema check possible!"
 msgstr "Không thể dùng thông tin lược đồ từ server. Không thể kiểm tra giản đồ!"
 
-#: include/functions.inc:2581
+#: include/functions.inc:2584
 msgid ""
 "Used to lock currently edited entries to avoid multiple changes at the same "
 "time."
 msgstr "Đã từng khóa các entry hiện đang được hiệu chỉnh nhằm tránh các thay đổi khác nhau tại cùng một thời điểm."
 
-#: include/functions.inc:2593
+#: include/functions.inc:2596
 #, php-format
 msgid "Missing required object class '%s'!"
 msgstr "Lớp đối tượng '%s' được yêu cầu mất tích!"
 
-#: include/functions.inc:2596
+#: include/functions.inc:2599
 #, php-format
 msgid "Missing optional object class '%s'!"
 msgstr "Lớp đối tượng lựa chọn '%s' mất tích!"
 
-#: include/functions.inc:2600
+#: include/functions.inc:2603
 #, php-format
 msgid "Class(es) available"
 msgstr "Đã có lớp"
 
-#: include/functions.inc:2620
+#: include/functions.inc:2623
 msgid ""
 "You have installed the mixed groups plugin, but your schema configuration "
 "does not support this."
 msgstr ""
 
-#: include/functions.inc:2621
+#: include/functions.inc:2624
 msgid ""
 "In order to use mixed groups the objectClass \"posixGroup\" must be "
 "AUXILIARY"
 msgstr ""
 
-#: include/functions.inc:2624
+#: include/functions.inc:2627
 msgid ""
 "Your schema is configured to support mixed groups, but this plugin is not "
 "present."
 msgstr ""
 
-#: include/functions.inc:2625
+#: include/functions.inc:2628
 msgid "The objectClass \"posixGroup\" must be STRUCTURAL"
 msgstr ""
 
-#: include/functions.inc:3075 include/functions.inc:3096
-#: include/functions.inc:3134 include/functions.inc:3146
-#: include/functions.inc:3150 include/functions.inc:3157
-#: include/functions.inc:3166
+#: include/functions.inc:3106 include/functions.inc:3127
+#: include/functions.inc:3165 include/functions.inc:3177
+#: include/functions.inc:3181 include/functions.inc:3188
+#: include/functions.inc:3197
 msgid "Cannot allocate a free ID:"
 msgstr ""
 
-#: include/functions.inc:3075
+#: include/functions.inc:3106
 msgid "unknown idAllocation method!"
 msgstr ""
 
-#: include/functions.inc:3096
+#: include/functions.inc:3127
 #, php-format
 msgid "%sPoolMin >= %sPoolMax!"
 msgstr ""
 
-#: include/functions.inc:3126
+#: include/functions.inc:3157
 msgid "Cannot create sambaUnixIdPool entry!"
 msgstr ""
 
-#: include/functions.inc:3134
+#: include/functions.inc:3165
 msgid "sambaUnixIdPool is not unique!"
 msgstr ""
 
-#: include/functions.inc:3146 include/functions.inc:3150
+#: include/functions.inc:3177 include/functions.inc:3181
 msgid "no ID available!"
 msgstr ""
 
-#: include/functions.inc:3166
+#: include/functions.inc:3197
 msgid "maximum tries exceeded!"
 msgstr ""
 
-#: include/functions.inc:3228
+#: include/functions.inc:3259
 msgid "Cannot allocate a free ID!"
 msgstr "Không thể phân phối một ID miễn phí!"
 
-#: include/functions.inc:3264
+#: include/functions.inc:3295
 #, php-format
 msgid "Cannot locate file '%s' - please run '%s' to fix this"
 msgstr "Không thể xác định vị trí file '%s'- xin hãy chạy '%s' để sửa lỗi này!"
@@ -3597,6 +3598,11 @@ msgstr ""
 msgid "Delete process has been canceled by plugin '%s': %s"
 msgstr "Qúa trình xóa đã bị hủy bỏ bởi plugin '%s': %s"
 
+#: include/simpleplugin/class_simpleTabs.inc:405
+#, php-format
+msgid "Move from \"%s\" to \"%s\" failed"
+msgstr ""
+
 #: include/class_timezone.inc:52
 #, php-format
 msgid "The timezone setting \"%s\" in your configuration is not valid."
@@ -3659,63 +3665,63 @@ msgid ""
 "fusiondirectory-setup --check-config to fix this."
 msgstr ""
 
-#: html/index.php:175
+#: html/index.php:171
 msgid "Smarty error"
 msgstr "Lá»—i Smarty"
 
-#: html/index.php:177
+#: html/index.php:173
 #, php-format
 msgid "Directory \"%s\" specified as compile directory is not accessible!"
 msgstr ""
 
-#: html/index.php:212
+#: html/index.php:208
 msgid "Your FusionDirectory session has expired!"
 msgstr ""
 
-#: html/index.php:215
+#: html/index.php:211
 msgid "Your IP has changed!"
 msgstr ""
 
-#: html/index.php:218
+#: html/index.php:214
 #, php-format
 msgid "Invalid plugin parameter \"%s\"!"
 msgstr ""
 
-#: html/index.php:221
+#: html/index.php:217
 msgid "No session found!"
 msgstr ""
 
-#: html/index.php:256
+#: html/index.php:252
 msgid "LDAP schema check reported errors:"
 msgstr ""
 
-#: html/index.php:282
+#: html/index.php:278
 msgid "Please specify a valid username!"
 msgstr "Xin hãy xác định một tên người dùng hợp lệ!"
 
-#: html/index.php:285
+#: html/index.php:281
 msgid "Please specify your password!"
 msgstr "Xin hãy xác định mật mã của bạn!"
 
-#: html/index.php:304
+#: html/index.php:300
 msgid "Please check the username/password combination."
 msgstr "Xin hãy kiểm tra kết hợp tên người dùng/mật khẩu."
 
-#: html/index.php:337
+#: html/index.php:333
 msgid "Account locked. Please contact your system administrator!"
 msgstr "Tài khoản bị khóa. Xin hãy liên lạc với admin quản trị hệ thống của bạn!"
 
-#: html/index.php:440
+#: html/index.php:436
 #, php-format
 msgid "CAS user \"%s\" could not be found in the LDAP"
 msgstr ""
 
-#: html/index.php:450
+#: html/index.php:446
 #, php-format
 msgid "CAS user \"%s\" match several users in the LDAP"
 msgstr ""
 
-#: html/index.php:485
+#: html/index.php:481
 msgid ""
 "Your browser has cookies disabled. Please enable cookies and reload this "
 "page before logging in!"
diff --git a/locale/zh/fusiondirectory.po b/locale/zh/fusiondirectory.po
index 0d4ec3dbdb3feed3b6518b660326ff0da3b69744..a4cb6e69e1eaadd4ef5e42c849af73995bd3ddec 100644
--- a/locale/zh/fusiondirectory.po
+++ b/locale/zh/fusiondirectory.po
@@ -7,8 +7,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: FusionDirectory-109\n"
 "Report-Msgid-Bugs-To: bugs@fusiondirectory.org\n"
-"POT-Creation-Date: 2016-01-04 11:54+0100\n"
-"PO-Revision-Date: 2016-01-04 10:52+0000\n"
+"POT-Creation-Date: 2016-01-22 11:26+0100\n"
+"PO-Revision-Date: 2016-01-22 10:24+0000\n"
 "Last-Translator: fusiondirectory <contact@fusiondirectory.org>\n"
 "Language-Team: Chinese (http://www.transifex.com/fusiondirectory/FusionDirectory-109/language/zh/)\n"
 "MIME-Version: 1.0\n"
@@ -95,7 +95,7 @@ msgstr ""
 
 #: plugins/admin/groups/class_roleGeneric.inc:78
 #: plugins/admin/users/class_userManagement.inc:42
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:29
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:27
 #: setup/class_setupStep_Migrate.inc:871
 msgid "Users"
 msgstr "用户"
@@ -204,10 +204,10 @@ msgid "Only allow this group to connect to this list of hosts"
 msgstr ""
 
 #: plugins/admin/groups/class_group.inc:181
-#: plugins/personal/posix/class_posixAccount.inc:458 include/functions.inc:791
-#: include/functions.inc:2545 include/class_xml.inc:55
+#: plugins/personal/posix/class_posixAccount.inc:458 include/functions.inc:794
+#: include/functions.inc:2548 include/class_xml.inc:55
 #: include/simpleplugin/class_simpleTabs.inc:325 html/index.php:56
-#: html/index.php:62 html/index.php:485 html/class_passwordRecovery.inc:378
+#: html/index.php:62 html/index.php:481 html/class_passwordRecovery.inc:378
 #: setup/class_setupStep_Migrate.inc:572
 #: setup/class_setupStep_Migrate.inc:1083
 #: setup/class_setupStep_Migrate.inc:1202
@@ -250,7 +250,7 @@ msgstr "成员对象"
 msgid "Objects member of this group"
 msgstr ""
 
-#: plugins/admin/groups/class_ogroup.inc:317
+#: plugins/admin/groups/class_ogroup.inc:318
 msgid ""
 "Putting both workstations and terminals in the same group is not allowed"
 msgstr ""
@@ -873,19 +873,19 @@ msgstr ""
 msgid "Statistics"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:30
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:28
 msgid "Statistics about users"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:41
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:39
 msgid "Users statistics"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:46
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:44
 msgid "Groups statistics"
 msgstr ""
 
-#: plugins/addons/dashboard/class_dashBoardUsers.inc:51
+#: plugins/addons/dashboard/class_dashBoardUsers.inc:49
 #: plugins/addons/dashboard/users_accounts.tpl.c:8
 msgid "Expired accounts"
 msgstr ""
@@ -2106,11 +2106,11 @@ msgstr ""
 #: include/class_config.inc:479 include/class_msgPool.inc:215
 #: include/class_msgPool.inc:235 include/class_msgPool.inc:265
 #: include/class_msgPool.inc:682 include/class_msgPool.inc:713
-#: include/class_msgPool.inc:740 include/functions.inc:3075
-#: include/functions.inc:3096 include/functions.inc:3126
-#: include/functions.inc:3134 include/functions.inc:3146
-#: include/functions.inc:3150 include/functions.inc:3157
-#: include/functions.inc:3166 include/functions.inc:3228
+#: include/class_msgPool.inc:740 include/functions.inc:3106
+#: include/functions.inc:3127 include/functions.inc:3157
+#: include/functions.inc:3165 include/functions.inc:3177
+#: include/functions.inc:3181 include/functions.inc:3188
+#: include/functions.inc:3197 include/functions.inc:3259
 #: include/class_msg_dialog.inc:128 include/class_xml.inc:58
 #: include/class_plugin.inc:1663 include/class_CopyPasteHandler.inc:278
 #: include/simpleplugin/class_dialogAttributes.inc:733
@@ -2121,11 +2121,12 @@ msgstr ""
 #: include/simpleplugin/class_attribute.inc:1877
 #: include/simpleplugin/class_attribute.inc:1879
 #: include/simpleplugin/class_simpleTabs.inc:90
+#: include/simpleplugin/class_simpleTabs.inc:405
 #: include/password-methods/class_password-methods-sasl.inc:60
 #: include/password-methods/class_password-methods-sasl.inc:86
-#: include/password-methods/class_password-methods.inc:434
-#: include/password-methods/class_password-methods.inc:444
-#: include/class_SnapshotHandler.inc:415 html/index.php:438 html/index.php:448
+#: include/password-methods/class_password-methods.inc:437
+#: include/password-methods/class_password-methods.inc:447
+#: include/class_SnapshotHandler.inc:415 html/index.php:434 html/index.php:444
 #: setup/class_setupStep_Migrate.inc:935
 #: ihtml/themes/default/msg_dialog.tpl.c:2 setup/setup_checks.tpl.c:5
 msgid "Error"
@@ -2244,8 +2245,8 @@ msgid "XML error in fusiondirectory.conf: %s at line %d"
 msgstr "XML 出错于 fusiondirectory.conf: %s ,行 %d"
 
 #: include/class_config.inc:162 include/class_config.inc:300
-#: include/class_config.inc:1001 include/class_config.inc:1014
-#: include/functions.inc:660 include/class_timezone.inc:51
+#: include/class_config.inc:985 include/class_config.inc:998
+#: include/functions.inc:663 include/class_timezone.inc:51
 #: include/password-methods/class_password-methods-sha.inc:71
 #: include/password-methods/class_password-methods-ssha.inc:75
 #: include/password-methods/class_password-methods-ssha.inc:91
@@ -2262,16 +2263,16 @@ msgid ""
 msgstr ""
 
 #: include/class_config.inc:337 include/class_ldap.inc:917
-#: include/class_ldap.inc:1371 include/functions.inc:523
-#: include/functions.inc:675 include/functions.inc:722
-#: include/functions.inc:783 include/functions.inc:838
-#: include/functions.inc:2965 include/simpleplugin/class_simplePlugin.inc:545
+#: include/class_ldap.inc:1371 include/functions.inc:526
+#: include/functions.inc:678 include/functions.inc:725
+#: include/functions.inc:786 include/functions.inc:841
+#: include/functions.inc:2985 include/simpleplugin/class_simplePlugin.inc:545
 #: include/simpleplugin/class_attribute.inc:2895
-#: include/password-methods/class_password-methods.inc:196
+#: include/password-methods/class_password-methods.inc:199
 #: include/class_SnapshotHandler.inc:50 include/class_SnapshotHandler.inc:244
 #: include/class_SnapshotHandler.inc:277 include/class_SnapshotHandler.inc:292
 #: include/class_SnapshotHandler.inc:422 include/class_SnapshotHandler.inc:425
-#: html/index.php:364 html/class_passwordRecovery.inc:497
+#: html/index.php:360 html/class_passwordRecovery.inc:497
 #: setup/class_setupStep_Migrate.inc:451
 #: setup/class_setupStep_Migrate.inc:1130
 msgid "LDAP error"
@@ -2286,25 +2287,25 @@ msgstr ""
 msgid "The selected mail method (class %s) is not available"
 msgstr ""
 
-#: include/class_config.inc:1002
+#: include/class_config.inc:986
 #, php-format
 msgid ""
 "The snapshot functionality is enabled, but the required variable '%s' is not"
 " set."
 msgstr ""
 
-#: include/class_config.inc:1015
+#: include/class_config.inc:999
 #, php-format
 msgid ""
 "The snapshot functionality is enabled, but the required compression module "
 "is missing. Please install '%s'."
 msgstr ""
 
-#: include/class_config.inc:1120
+#: include/class_config.inc:1104
 msgid "All categories"
 msgstr ""
 
-#: include/class_config.inc:1247
+#: include/class_config.inc:1231
 msgid "My account"
 msgstr "我的账号"
 
@@ -2318,10 +2319,10 @@ msgid "LDAP performance is poor: last query took about %.2fs!"
 msgstr ""
 
 #: include/class_ldap.inc:868 include/class_ldap.inc:904
-#: include/functions.inc:565 include/functions.inc:650
-#: include/functions.inc:770 include/functions.inc:1189
-#: include/functions.inc:2272 include/functions.inc:2314
-#: include/functions.inc:2343 include/class_session.inc:50
+#: include/functions.inc:568 include/functions.inc:653
+#: include/functions.inc:773 include/functions.inc:1192
+#: include/functions.inc:2275 include/functions.inc:2317
+#: include/functions.inc:2346 include/class_session.inc:50
 #: include/class_session.inc:87 include/class_session.inc:125
 #: include/class_log.inc:96 include/class_acl.inc:118
 msgid "Internal error"
@@ -2947,7 +2948,7 @@ msgid ""
 "Fatal error: cannot instantiate class '%s' - try running '%s' to fix this"
 msgstr ""
 
-#: include/functions.inc:493 include/functions.inc:3263
+#: include/functions.inc:496 include/functions.inc:3294
 #: include/class_xml.inc:61 include/simpleplugin/class_simplePlugin.inc:263
 #: include/simpleplugin/class_simplePlugin.inc:268
 #: include/simpleplugin/class_simplePlugin.inc:280
@@ -2955,246 +2956,246 @@ msgstr ""
 msgid "Fatal error"
 msgstr ""
 
-#: include/functions.inc:494
+#: include/functions.inc:497
 #, php-format
 msgid "FATAL: Error when connecting the LDAP. Server said '%s'."
 msgstr "致命错误:连接 LDAP 错误。服务器返回 '%s'。"
 
-#: include/functions.inc:565
+#: include/functions.inc:568
 msgid ""
 "Login (uid) is not unique inside the LDAP tree. Please contact your "
 "administrator."
 msgstr ""
 
-#: include/functions.inc:598
+#: include/functions.inc:601
 msgid "Authentication error"
 msgstr ""
 
-#: include/functions.inc:599
+#: include/functions.inc:602
 msgid ""
 "It seems your user password has expired. Please use <a "
 "href=\"recovery.php\">password recovery</a> to change it."
 msgstr ""
 
-#: include/functions.inc:650 include/functions.inc:770
+#: include/functions.inc:653 include/functions.inc:773
 msgid "Error while adding a lock. Contact the developers!"
 msgstr ""
 
-#: include/functions.inc:660
+#: include/functions.inc:663
 #, php-format
 msgid ""
 "Cannot create locking information in LDAP tree. Please contact your "
 "administrator!"
 msgstr ""
 
-#: include/functions.inc:660
+#: include/functions.inc:663
 #, php-format
 msgid "LDAP server returned: %s"
 msgstr ""
 
-#: include/functions.inc:791
+#: include/functions.inc:794
 msgid ""
 "Found multiple locks for object to be locked. This should not happen - "
 "cleaning up multiple references."
 msgstr ""
 
-#: include/functions.inc:1109
+#: include/functions.inc:1112
 #, php-format
 msgid "The size limit of %d entries is exceed!"
 msgstr "超过了 %d 个条目的大小限制!"
 
-#: include/functions.inc:1111
+#: include/functions.inc:1114
 #, php-format
 msgid ""
 "Set the new size limit to %s and show me this message if the limit still "
 "exceeds"
 msgstr "设置新的大小限制为 %s 并且如果限制依然超出还显示这条信息。"
 
-#: include/functions.inc:1128
+#: include/functions.inc:1131
 msgid "Configure"
 msgstr "配置"
 
-#: include/functions.inc:1133
+#: include/functions.inc:1136
 msgid "incomplete"
 msgstr "不完整"
 
-#: include/functions.inc:1538
+#: include/functions.inc:1541
 msgid "Continue anyway"
 msgstr "仍然继续"
 
-#: include/functions.inc:1540
+#: include/functions.inc:1543
 msgid "Edit anyway"
 msgstr "仍然编辑"
 
-#: include/functions.inc:1542
+#: include/functions.inc:1545
 #, php-format
 msgid "You're going to edit the LDAP entry/entries %s"
 msgstr ""
 
-#: include/functions.inc:1796
+#: include/functions.inc:1799
 msgid "Entries per page"
 msgstr "每页条目数"
 
-#: include/functions.inc:1827 include/class_filter.inc:353
+#: include/functions.inc:1830 include/class_filter.inc:353
 msgid "Apply filter"
 msgstr "应用过滤器"
 
-#: include/functions.inc:2095
+#: include/functions.inc:2098
 #, php-format
 msgid "%sB"
 msgstr ""
 
-#: include/functions.inc:2096
+#: include/functions.inc:2099
 #, php-format
 msgid "%sKiB"
 msgstr ""
 
-#: include/functions.inc:2097
+#: include/functions.inc:2100
 #, php-format
 msgid "%sMiB"
 msgstr ""
 
-#: include/functions.inc:2098
+#: include/functions.inc:2101
 #, php-format
 msgid "%sGiB"
 msgstr ""
 
-#: include/functions.inc:2099
+#: include/functions.inc:2102
 #, php-format
 msgid "%sTiB"
 msgstr ""
 
-#: include/functions.inc:2100
+#: include/functions.inc:2103
 #, php-format
 msgid "%sPiB"
 msgstr ""
 
-#: include/functions.inc:2101
+#: include/functions.inc:2104
 #, php-format
 msgid "%sEiB"
 msgstr ""
 
-#: include/functions.inc:2102
+#: include/functions.inc:2105
 #, php-format
 msgid "%sZiB"
 msgstr ""
 
-#: include/functions.inc:2103
+#: include/functions.inc:2106
 #, php-format
 msgid "%sYiB"
 msgstr ""
 
-#: include/functions.inc:2135 include/class_filter.inc:315
+#: include/functions.inc:2138 include/class_filter.inc:315
 msgid "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
 msgstr "*ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
 
-#: include/functions.inc:2272
+#: include/functions.inc:2275
 #, php-format
 msgid ""
 "File '%s' could not be deleted. Try fusiondirectory-setup --check-"
 "directories to fix permissions."
 msgstr ""
 
-#: include/functions.inc:2314
+#: include/functions.inc:2317
 msgid "Cannot write to revision file!"
 msgstr ""
 
-#: include/functions.inc:2343
+#: include/functions.inc:2346
 msgid "Cannot read to revision file!"
 msgstr ""
 
-#: include/functions.inc:2545
+#: include/functions.inc:2548
 msgid "'nextIdHook' is not available. Using default base!"
 msgstr ""
 
-#: include/functions.inc:2563
+#: include/functions.inc:2566
 msgid "LDAP warning"
 msgstr ""
 
-#: include/functions.inc:2563
+#: include/functions.inc:2566
 msgid "Cannot get schema information from server. No schema check possible!"
 msgstr ""
 
-#: include/functions.inc:2581
+#: include/functions.inc:2584
 msgid ""
 "Used to lock currently edited entries to avoid multiple changes at the same "
 "time."
 msgstr ""
 
-#: include/functions.inc:2593
+#: include/functions.inc:2596
 #, php-format
 msgid "Missing required object class '%s'!"
 msgstr ""
 
-#: include/functions.inc:2596
+#: include/functions.inc:2599
 #, php-format
 msgid "Missing optional object class '%s'!"
 msgstr ""
 
-#: include/functions.inc:2600
+#: include/functions.inc:2603
 #, php-format
 msgid "Class(es) available"
 msgstr ""
 
-#: include/functions.inc:2620
+#: include/functions.inc:2623
 msgid ""
 "You have installed the mixed groups plugin, but your schema configuration "
 "does not support this."
 msgstr ""
 
-#: include/functions.inc:2621
+#: include/functions.inc:2624
 msgid ""
 "In order to use mixed groups the objectClass \"posixGroup\" must be "
 "AUXILIARY"
 msgstr ""
 
-#: include/functions.inc:2624
+#: include/functions.inc:2627
 msgid ""
 "Your schema is configured to support mixed groups, but this plugin is not "
 "present."
 msgstr ""
 
-#: include/functions.inc:2625
+#: include/functions.inc:2628
 msgid "The objectClass \"posixGroup\" must be STRUCTURAL"
 msgstr ""
 
-#: include/functions.inc:3075 include/functions.inc:3096
-#: include/functions.inc:3134 include/functions.inc:3146
-#: include/functions.inc:3150 include/functions.inc:3157
-#: include/functions.inc:3166
+#: include/functions.inc:3106 include/functions.inc:3127
+#: include/functions.inc:3165 include/functions.inc:3177
+#: include/functions.inc:3181 include/functions.inc:3188
+#: include/functions.inc:3197
 msgid "Cannot allocate a free ID:"
 msgstr ""
 
-#: include/functions.inc:3075
+#: include/functions.inc:3106
 msgid "unknown idAllocation method!"
 msgstr ""
 
-#: include/functions.inc:3096
+#: include/functions.inc:3127
 #, php-format
 msgid "%sPoolMin >= %sPoolMax!"
 msgstr ""
 
-#: include/functions.inc:3126
+#: include/functions.inc:3157
 msgid "Cannot create sambaUnixIdPool entry!"
 msgstr ""
 
-#: include/functions.inc:3134
+#: include/functions.inc:3165
 msgid "sambaUnixIdPool is not unique!"
 msgstr ""
 
-#: include/functions.inc:3146 include/functions.inc:3150
+#: include/functions.inc:3177 include/functions.inc:3181
 msgid "no ID available!"
 msgstr ""
 
-#: include/functions.inc:3166
+#: include/functions.inc:3197
 msgid "maximum tries exceeded!"
 msgstr ""
 
-#: include/functions.inc:3228
+#: include/functions.inc:3259
 msgid "Cannot allocate a free ID!"
 msgstr ""
 
-#: include/functions.inc:3264
+#: include/functions.inc:3295
 #, php-format
 msgid "Cannot locate file '%s' - please run '%s' to fix this"
 msgstr ""
@@ -3597,6 +3598,11 @@ msgstr ""
 msgid "Delete process has been canceled by plugin '%s': %s"
 msgstr "删除进程被插件 '%s' 取消: %s"
 
+#: include/simpleplugin/class_simpleTabs.inc:405
+#, php-format
+msgid "Move from \"%s\" to \"%s\" failed"
+msgstr ""
+
 #: include/class_timezone.inc:52
 #, php-format
 msgid "The timezone setting \"%s\" in your configuration is not valid."
@@ -3659,63 +3665,63 @@ msgid ""
 "fusiondirectory-setup --check-config to fix this."
 msgstr ""
 
-#: html/index.php:175
+#: html/index.php:171
 msgid "Smarty error"
 msgstr ""
 
-#: html/index.php:177
+#: html/index.php:173
 #, php-format
 msgid "Directory \"%s\" specified as compile directory is not accessible!"
 msgstr ""
 
-#: html/index.php:212
+#: html/index.php:208
 msgid "Your FusionDirectory session has expired!"
 msgstr ""
 
-#: html/index.php:215
+#: html/index.php:211
 msgid "Your IP has changed!"
 msgstr ""
 
-#: html/index.php:218
+#: html/index.php:214
 #, php-format
 msgid "Invalid plugin parameter \"%s\"!"
 msgstr ""
 
-#: html/index.php:221
+#: html/index.php:217
 msgid "No session found!"
 msgstr ""
 
-#: html/index.php:256
+#: html/index.php:252
 msgid "LDAP schema check reported errors:"
 msgstr ""
 
-#: html/index.php:282
+#: html/index.php:278
 msgid "Please specify a valid username!"
 msgstr "请输入一个有效的用户名!"
 
-#: html/index.php:285
+#: html/index.php:281
 msgid "Please specify your password!"
 msgstr "请输入您的口令!"
 
-#: html/index.php:304
+#: html/index.php:300
 msgid "Please check the username/password combination."
 msgstr "请检查用户名/口令。"
 
-#: html/index.php:337
+#: html/index.php:333
 msgid "Account locked. Please contact your system administrator!"
 msgstr ""
 
-#: html/index.php:440
+#: html/index.php:436
 #, php-format
 msgid "CAS user \"%s\" could not be found in the LDAP"
 msgstr ""
 
-#: html/index.php:450
+#: html/index.php:446
 #, php-format
 msgid "CAS user \"%s\" match several users in the LDAP"
 msgstr ""
 
-#: html/index.php:485
+#: html/index.php:481
 msgid ""
 "Your browser has cookies disabled. Please enable cookies and reload this "
 "page before logging in!"
diff --git a/plugins/addons/dashboard/class_dashBoardUsers.inc b/plugins/addons/dashboard/class_dashBoardUsers.inc
index 92778746c95253abc13d52cc67cfb0dc50f62781..e8713466f1e450be58782d86c3796fe79c856196 100644
--- a/plugins/addons/dashboard/class_dashBoardUsers.inc
+++ b/plugins/addons/dashboard/class_dashBoardUsers.inc
@@ -19,8 +19,6 @@
   Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
 */
 
-
-
 class dashboardUsers extends simplePlugin
 {
   static function plInfo()
diff --git a/plugins/admin/groups/class_group.inc b/plugins/admin/groups/class_group.inc
index 2ff13c8ec6ed3ff12ca4d4b628d7a0916f5405fc..c08cef561d8c52027ed1c2e1e1dfa7725ed166cf 100644
--- a/plugins/admin/groups/class_group.inc
+++ b/plugins/admin/groups/class_group.inc
@@ -215,7 +215,13 @@ class group extends simplePlugin
 
   function addUser($dn, $uid)
   {
-    $this->attributesAccess['memberUid']->addValue($dn, array('uid' => array($uid), 'cn' => array($uid)));
+    $this->attributesAccess['memberUid']->addValue($dn,
+      array(
+        'dn'  => $dn,
+        'uid' => array($uid),
+        'cn'  => array($uid)
+      )
+    );
   }
 
   function removeUser($uid)
diff --git a/plugins/admin/groups/class_ogroup.inc b/plugins/admin/groups/class_ogroup.inc
index 7a0f15b193da1e2d8bae13ed9b31b99ee905598e..5f31b7ee11320835beb3090a69eab702abeb0393 100644
--- a/plugins/admin/groups/class_ogroup.inc
+++ b/plugins/admin/groups/class_ogroup.inc
@@ -55,12 +55,12 @@ class ObjectsAttribute extends GenericDialogAttribute
         }
       }
       if (!isset($this->displays[$i])) {
-        trigger_error('Unkown type for "'.$attrs['dn'].'"');
-        $this->displays[$i] = sprintf(_("Unknown type : %s"), LDAP::fix($attrs['dn']));
+        trigger_error('Unkown type for "'.$this->value[$i].'"');
+        $this->displays[$i] = sprintf(_('Unknown type : %s'), LDAP::fix($this->value[$i]));
         $this->types[$i]    = 'I';
       }
     } else {
-      $this->displays[$i] = sprintf(_("Non existing dn: %s"), LDAP::fix($this->value[$i]));
+      $this->displays[$i] = sprintf(_('Non existing dn: %s'), LDAP::fix($this->value[$i]));
       $this->types[$i]    = 'I';
     }
   }
@@ -265,6 +265,7 @@ class ogroup extends simplePlugin
     }
 
     $this->reload();
+    $this->updateAttributesValues();
   }
 
   function compute_dn()
diff --git a/plugins/config/class_configInLdap.inc b/plugins/config/class_configInLdap.inc
index f0e5b992d6e4b6b6c4af00a3f39e31d9cfa5671d..e59cf87e8d5cb13b2004ca565587d920050c97ca 100644
--- a/plugins/config/class_configInLdap.inc
+++ b/plugins/config/class_configInLdap.inc
@@ -157,12 +157,6 @@ class configInLdap extends simplePlugin
       'core_settings' => array(
         'name'  => _('Core settings'),
         'attrs' => array(
-          new BooleanAttribute (
-            _('Enable primary group filter'),
-            _('It is time consuming to evaluate which groups are primary and which are not, so you may want to disable it if your group plugin is slow.'),
-            'fdPrimaryGroupFilter', FALSE,
-            TRUE
-          ),
           new BooleanAttribute (
             _('Display summary in listings'),
             _('Determines whether a status bar will be shown on the bottom of lists, displaying a short summary of type and number of elements in the list.'),
diff --git a/plugins/personal/posix/class_posixAccount.inc b/plugins/personal/posix/class_posixAccount.inc
index a340aa23b8d244508db696cde3c8cc2e986bd60b..a4eb1f6cd64a8f60e4a7af14466cdbc6e31c510c 100644
--- a/plugins/personal/posix/class_posixAccount.inc
+++ b/plugins/personal/posix/class_posixAccount.inc
@@ -288,7 +288,7 @@ class posixAccount extends simplePlugin
     $this->ui = get_userinfo();
 
     $secondaryGroups = array();
-    $secondaryGroups[0] = "- "._("automatic")." -";
+    $secondaryGroups[''] = "- "._("automatic")." -";
     $ldap = $this->config->get_ldap_link();
     $ldap->cd($this->config->current['BASE']);
     $ldap->search("(objectClass=posixGroup)", array("cn", "gidNumber"));
diff --git a/plugins/personal/roles/class_userRoles.inc b/plugins/personal/roles/class_userRoles.inc
index ebc90e432547e3a860b9119d50d87674d8c393d5..23d8efc64e65a579f659746260f90018af198987 100644
--- a/plugins/personal/roles/class_userRoles.inc
+++ b/plugins/personal/roles/class_userRoles.inc
@@ -187,12 +187,19 @@ class userRoles extends simplePlugin
     parent::ldap_save($cleanup);
 
     if (!$this->is_template) {
+      /* We need to give an array which looks like an ldap fetch and match user filter */
+      $fake_attrs = array(
+        'objectClass' => array('inetOrgPerson','organizationalPerson','person'),
+        'cn'          => array($this->dn),
+        'dn'          => $this->dn
+      );
+
       /* Take care about groupsMembership values: add to groups */
       $groupsMembership = $this->attributesAccess['groupsMembership']->getValue();
       foreach ($groupsMembership as $ogroupdn) {
         if (!in_array($ogroupdn, $this->savedGroupsMembership)) {
           $g = objects::open($ogroupdn, 'ogroup');
-          $g->getBaseObject()->attributesAccess['member']->addValue($this->dn, array('cn' => 'user'));
+          $g->getBaseObject()->attributesAccess['member']->addValue($this->dn, $fake_attrs);
           $g->save();
         }
       }
@@ -211,7 +218,7 @@ class userRoles extends simplePlugin
       foreach ($rolesMembership as $roledn) {
         if (!in_array($roledn, $this->savedRolesMembership)) {
           $r = objects::open($roledn, 'role');
-          $r->getBaseObject()->attributesAccess['roleOccupant']->addValue($this->dn, array('cn' => 'user'));
+          $r->getBaseObject()->attributesAccess['roleOccupant']->addValue($this->dn, $fake_attrs);
           $r->save();
         }
       }